Skip to content

Commit f9505d2

Browse files
committed
build: update rust-toolchain to 08-05
Signed-off-by: YdrMaster <[email protected]>
1 parent d0daf8f commit f9505d2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/doc-and-test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: [push]
44

55
env:
66
CARGO_TERM_COLOR: always
7+
rust_toolchain: nightly-2022-08-05
78

89
jobs:
910
build-doc:
@@ -13,7 +14,7 @@ jobs:
1314
- uses: actions-rs/toolchain@v1
1415
with:
1516
profile: minimal
16-
toolchain: nightly-2022-07-20
17+
toolchain: ${{ env.rust_toolchain }}
1718
components: rust-src, llvm-tools-preview
1819
target: riscv64gc-unknown-none-elf
1920
- name: Build doc
@@ -32,7 +33,7 @@ jobs:
3233
- uses: actions-rs/toolchain@v1
3334
with:
3435
profile: minimal
35-
toolchain: nightly-2022-07-20
36+
toolchain: ${{ env.rust_toolchain }}
3637
components: rust-src, llvm-tools-preview
3738
target: riscv64gc-unknown-none-elf
3839
- uses: actions-rs/[email protected]
@@ -66,4 +67,4 @@ jobs:
6667
timeout-minutes: 10
6768

6869
- name: Build for k210
69-
run: cd os && make build BOARD=k210
70+
run: cd os && make build BOARD=k210

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
22
profile = "minimal"
3-
channel = "nightly-2022-07-20"
3+
channel = "nightly-2022-08-05"
44
components = ["rust-src", "llvm-tools-preview", "rustfmt", "clippy"]

0 commit comments

Comments
 (0)