File tree 2 files changed +8
-7
lines changed
compiler/rustc_ast_lowering/src
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -175,16 +175,17 @@ jobs:
175
175
176
176
- name : run the build
177
177
# 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}
180
185
env :
181
186
AWS_ACCESS_KEY_ID : ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
182
187
AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
183
188
184
- - name : Print helper link
185
- if : ${{ failure() }}
186
- run : echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html"
187
-
188
189
- name : create github artifacts
189
190
run : src/ci/scripts/create-doc-artifacts.sh
190
191
Original file line number Diff line number Diff line change 31
31
//! in the HIR, especially for multiple identifiers.
32
32
33
33
// tidy-alphabetical-start
34
- #![ allow( internal_features) ]
35
34
#![ doc( rust_logo) ]
35
+ #![ allow( internal_features) ]
36
36
#![ feature( assert_matches) ]
37
37
#![ feature( box_patterns) ]
38
38
#![ feature( if_let_guard) ]
You can’t perform that action at this time.
0 commit comments