File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
actions/build-with-patched-std Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 41
41
python3 x.py build library --stage 0
42
42
43
43
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"
45
45
BINARY_SIZE=$(stat -c '%s' "$TEMP_BUILD_OUTPUT")
46
46
rm "$TEMP_BUILD_OUTPUT"
47
47
Original file line number Diff line number Diff line change @@ -6,8 +6,9 @@ name: Check binary size
6
6
7
7
on :
8
8
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
11
12
12
13
# Both the "measure" and "report" jobs need to know this.
13
14
env :
You can’t perform that action at this time.
0 commit comments