Skip to content

Commit d96efb8

Browse files
authored
Revert "Use rustc from stage0 instead of stage0-sysroot" (rust-lang/backtrace#603)
This reverts commit c31ea5b (rust-lang/backtrace#602). Don't do that, we need to use stage0-sysroot, bootstrap is just buggy.
1 parent 7be8953 commit d96efb8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/actions/build-with-patched-std/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
python3 x.py build library --stage 0
4242
4343
TEMP_BUILD_OUTPUT=$(mktemp test-binary-XXXXXXXX)
44-
"$RUSTC_BUILD_DIR/stage0/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
44+
"$RUSTC_BUILD_DIR/stage0-sysroot/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
4545
BINARY_SIZE=$(stat -c '%s' "$TEMP_BUILD_OUTPUT")
4646
rm "$TEMP_BUILD_OUTPUT"
4747

.github/workflows/check-binary-size.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ name: Check binary size
66

77
on:
88
pull_request_target:
9-
branches:
10-
- master
9+
# HACK(jubilee): something broke the distributed LLVM libso and I don't know what.
10+
branches: []
11+
# - master
1112

1213
# Both the "measure" and "report" jobs need to know this.
1314
env:

0 commit comments

Comments
 (0)