Skip to content

Commit b86df00

Browse files
committed
feat: upgrade to Rust 1.86.0
1 parent 815f06d commit b86df00

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,19 @@ on:
77

88
env:
99
GH_TOKEN: ${{ github.token }}
10-
RUSTUP_TOOLCHAIN: 1.85.0
10+
RUSTUP_TOOLCHAIN: 1.86.0
1111

1212
jobs:
1313
dist:
1414
name: Build rust-std-hermit distribution artifacts
1515
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"
1623
steps:
1724
- uses: actions/checkout@v4
1825
- name: Checkout rust
@@ -21,6 +28,7 @@ jobs:
2128
repository: rust-lang/rust
2229
ref: ${{ env.RUSTUP_TOOLCHAIN }}
2330
path: rust
31+
submodules: true
2432
- name: Install arch-specific GCC variants
2533
run: |
2634
sudo apt-get update

0 commit comments

Comments
 (0)