Skip to content

Commit

Permalink
Reproduce issue 127
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 18, 2024
1 parent 7b1c307 commit bda2164
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/repro.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bda2164

Please sign in to comment.