File tree 2 files changed +3
-4
lines changed
actions/build-with-patched-std
2 files changed +3
-4
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-sysroot /bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
44
+ "$RUSTC_BUILD_DIR/stage0/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,9 +6,8 @@ name: Check binary size
6
6
7
7
on :
8
8
pull_request_target :
9
- # HACK(jubilee): something broke the distributed LLVM libso and I don't know what.
10
- branches : []
11
- # - master
9
+ branches :
10
+ - master
12
11
13
12
# Both the "measure" and "report" jobs need to know this.
14
13
env :
You can’t perform that action at this time.
0 commit comments