Skip to content

Commit

Permalink
Demonstration of CI failure handling
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Noland <daniel@githedgehog.com>
  • Loading branch information
daniel-noland committed Feb 7, 2025
1 parent 5a5737b commit ba50b4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ jobs:
- id: "musl_dev_test"
name: "test musl dev"
run: |
# inject a fault into nightly and make sure we still pass
if [ "${{matrix.rust.version}}" = "nightly" ]; then
exit 193; # oh no... something is broken...
fi
just debug="${{matrix.debug_just}}" rust=${{matrix.rust.version}} profile=dev target=x86_64-unknown-linux-musl \
cargo test
just debug="${{matrix.debug_just}}" rust=${{matrix.rust.version}} profile=dev target=x86_64-unknown-linux-musl \
Expand Down

0 comments on commit ba50b4d

Please sign in to comment.