Reproduce issue 127

This commit is contained in:
David Tolnay 2024-11-17 20:04:33 -08:00
parent 7b1c307e0d
commit bda2164204
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

24
.github/workflows/repro.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: repro
on:
push:
branches: [repro]
permissions:
contents: read
jobs:
repro:
name: Repro
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: mkdir -p broken/lib broken/bin
- run: touch broken/bin/rustc
- run: rustup toolchain link broken $PWD/broken
- run: rustup override set broken
- run: rm -r broken/
- uses: ./
with:
toolchain: beta
- run: rustc --version