File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
compiler/rustc_ast_lowering/src Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -175,16 +175,17 @@ jobs:
175175
176176 - name : run the build
177177 # Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178- run : exit 1
179- # src/ci/scripts/run-build-from-ci.sh 2>&1
178+ run : |
179+ src/ci/scripts/run-build-from-ci.sh 2>&1
180+ STATUS=$?
181+ if [[ STATUS != 0 ]]; then
182+ echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html"
183+ fi
184+ exit ${STATUS}
180185 env :
181186 AWS_ACCESS_KEY_ID : ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
182187 AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
183188
184- - name : Print helper link
185- if : ${{ failure() }}
186- run : echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html"
187-
188189 - name : create github artifacts
189190 run : src/ci/scripts/create-doc-artifacts.sh
190191
Original file line number Diff line number Diff line change 3131//! in the HIR, especially for multiple identifiers.
3232
3333// tidy-alphabetical-start
34- #![ allow( internal_features) ]
3534#![ doc( rust_logo) ]
35+ #![ allow( internal_features) ]
3636#![ feature( assert_matches) ]
3737#![ feature( box_patterns) ]
3838#![ feature( if_let_guard) ]
You can’t perform that action at this time.
0 commit comments