Skip to content

Commit 5f6718c

Browse files
committed
WIP
1 parent e68f6fa commit 5f6718c

File tree

2 files changed

+8
-7
lines changed
  • .github/workflows
  • compiler/rustc_ast_lowering/src

2 files changed

+8
-7
lines changed

.github/workflows/ci.yml

+7-6
Original file line numberDiff line numberDiff 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

compiler/rustc_ast_lowering/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
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)]

0 commit comments

Comments
 (0)