Skip to content

Commit

Permalink
Revert "Use rustc from stage0 instead of stage0-sysroot" (rust-lang/b…
Browse files Browse the repository at this point in the history
…acktrace#603)

This reverts commit c31ea5b (rust-lang/backtrace#602).

Don't do that, we need to use stage0-sysroot, bootstrap is just buggy.
  • Loading branch information
Noratrieb authored Mar 23, 2024
1 parent 7be8953 commit d96efb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-with-patched-std/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
python3 x.py build library --stage 0
TEMP_BUILD_OUTPUT=$(mktemp test-binary-XXXXXXXX)
"$RUSTC_BUILD_DIR/stage0/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
"$RUSTC_BUILD_DIR/stage0-sysroot/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
BINARY_SIZE=$(stat -c '%s' "$TEMP_BUILD_OUTPUT")
rm "$TEMP_BUILD_OUTPUT"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/check-binary-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ name: Check binary size

on:
pull_request_target:
branches:
- master
# HACK(jubilee): something broke the distributed LLVM libso and I don't know what.
branches: []
# - master

# Both the "measure" and "report" jobs need to know this.
env:
Expand Down

0 comments on commit d96efb8

Please sign in to comment.