File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
env :
9
9
GH_TOKEN : ${{ github.token }}
10
- RUSTUP_TOOLCHAIN : 1.85 .0
10
+ RUSTUP_TOOLCHAIN : 1.86 .0
11
11
12
12
jobs :
13
13
dist :
14
14
name : Build rust-std-hermit distribution artifacts
15
15
runs-on : ubuntu-latest
16
+ env :
17
+ # FIXME: this is a workaround for
18
+ # thread 'main' panicked at src/build_helper/src/git.rs:145:54:
19
+ # called `Result::unwrap()` on an `Err` value: "Cannot find any suitable upstream master branch"
20
+ # https://github.com/rust-lang/rust/blob/1.86.0/src/build_helper/src/git.rs#L145
21
+ CI_JOB_NAME : dist-hermit
22
+ TOOLSTATE_REPO : " https://github.com/rust-lang-nursery/rust-toolstate"
16
23
steps :
17
24
- uses : actions/checkout@v4
18
25
- name : Checkout rust
21
28
repository : rust-lang/rust
22
29
ref : ${{ env.RUSTUP_TOOLCHAIN }}
23
30
path : rust
31
+ submodules : true
32
+ - name : Checkout submodules
33
+ working-directory : ./rust
34
+ run : src/ci/scripts/checkout-submodules.sh
24
35
- name : Install arch-specific GCC variants
25
36
run : |
26
37
sudo apt-get update
You can’t perform that action at this time.
0 commit comments