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 5f6718c commit b857d28Copy full SHA for b857d28
.github/workflows/ci.yml
@@ -174,9 +174,12 @@ jobs:
174
run: src/ci/scripts/verify-stable-version-number.sh
175
176
- name: run the build
177
- # Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178
run: |
+ set +e
179
+ # Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
180
src/ci/scripts/run-build-from-ci.sh 2>&1
181
+ set -e
182
+
183
STATUS=$?
184
if [[ STATUS != 0 ]]; then
185
echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html"
0 commit comments