We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968da78 commit cfb6a7cCopy full SHA for cfb6a7c
.github/workflows/test-rustc-targets.yml
@@ -29,7 +29,9 @@ jobs:
29
- name: Test with `RUSTFLAGS=--cfg=rustc_target_test cargo test --lib`
30
id: test
31
continue-on-error: true # We want to open an issue if it fails
32
- run: cargo test --lib 2>&1 | tee test_output.txt
+ run: |
33
+ set -o pipefail
34
+ cargo test --lib 2>&1 | tee test_output.txt
35
env:
36
RUSTFLAGS: --cfg=rustc_target_test
37
0 commit comments