File tree 2 files changed +8
-2
lines changed
actions/build-with-patched-std 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 31
31
# symlink on Linux and a junction on Windows, so it will exist on both
32
32
# platforms.
33
33
RUSTC_BUILD_DIR : build/host
34
+ RUST_BACKTRACE : 1
34
35
working-directory : ${{ inputs.rustc-dir }}
35
36
run : |
37
+ set -x
36
38
rm -rf "$RUSTC_BUILD_DIR/stage0-std"
37
39
38
40
(cd library/backtrace && git checkout ${{ inputs.backtrace-commit }})
Original file line number Diff line number Diff line change 13
13
# Both the "measure" and "report" jobs need to know this.
14
14
env :
15
15
SIZE_DATA_DIR : sizes
16
+ RUST_BACKTRACE : 1
16
17
17
18
# Responsibility is divided between two jobs "measure" and "report", so that the
18
19
# job that builds (and potentnially runs) untrusted code does not have PR write
@@ -55,17 +56,20 @@ jobs:
55
56
with :
56
57
repository : rust-lang/rust
57
58
path : ${{ env.RUSTC_DIR }}
59
+ # Arbitrary version from 2024-04-28
60
+ ref : cc74ed08d53fbb440b4ab70035a92d89d418d23c
58
61
- name : Set up std repository and backtrace submodule for size test
59
62
shell : bash
60
63
working-directory : ${{ env.RUSTC_DIR }}
61
64
env :
62
65
PR_SOURCE_REPO : ${{ github.event.pull_request.head.repo.full_name }}
63
66
run : |
67
+ set -x
64
68
# Bootstrap config
65
- cat <<EOF > config .toml
69
+ cat <<EOF > bootstrap .toml
66
70
change-id = 9999999
67
71
[llvm]
68
- download-ci-llvm = true
72
+ download-ci-llvm = "if-unchanged"
69
73
[rust]
70
74
incremental = false
71
75
EOF
You can’t perform that action at this time.
0 commit comments