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 63e9dc8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/repro.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: repro

on:
push:
branches: [repro]

permissions:
contents: read

jobs:
repro:
name: Repro
runs-on: ubuntu-latest
timeout-minutes: 45
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 63e9dc8

Please sign in to comment.