We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193125a commit c31ea5bCopy full SHA for c31ea5b
.github/actions/build-with-patched-std/action.yml
@@ -41,7 +41,7 @@ runs:
41
python3 x.py build library --stage 0
42
43
TEMP_BUILD_OUTPUT=$(mktemp test-binary-XXXXXXXX)
44
- "$RUSTC_BUILD_DIR/stage0-sysroot/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
+ "$RUSTC_BUILD_DIR/stage0/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
45
BINARY_SIZE=$(stat -c '%s' "$TEMP_BUILD_OUTPUT")
46
rm "$TEMP_BUILD_OUTPUT"
47
.github/workflows/check-binary-size.yml
@@ -6,9 +6,8 @@ name: Check binary size
6
7
on:
8
pull_request_target:
9
- # HACK(jubilee): something broke the distributed LLVM libso and I don't know what.
10
- branches: []
11
-# - master
+ branches:
+ - master
12
13
# Both the "measure" and "report" jobs need to know this.
14
env:
0 commit comments