Browse Source

chore: upgrade rust version to 2024-11-05 (#48)

Signed-off-by: longjin <longjin@DragonOS.org>
LoGin 4 months ago
parent
commit
e945c217b3
3 changed files with 6 additions and 6 deletions
  1. 4 4
      .github/workflows/cache-toolchain.yml
  2. 1 1
      Makefile
  3. 1 1
      rust-toolchain.toml

+ 4 - 4
.github/workflows/cache-toolchain.yml

@@ -35,12 +35,12 @@ jobs:
             rustup component add rust-src
             rustup component add llvm-tools-preview
             rustup target add x86_64-unknown-none
-            rustup component add rust-src --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
+            rustup component add rust-src --toolchain nightly-2024-11-05-x86_64-unknown-linux-gnu
             rustup component add rustfmt
 
-            rustup toolchain install nightly-2023-08-15-x86_64-unknown-linux-gnu
-            rustup component add rust-src --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
-            rustup target add x86_64-unknown-linux-musl --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
+            rustup toolchain install nightly-2024-11-05-x86_64-unknown-linux-gnu
+            rustup component add rust-src --toolchain nightly-2024-11-05-x86_64-unknown-linux-gnu
+            rustup target add x86_64-unknown-linux-musl --toolchain nightly-2024-11-05-x86_64-unknown-linux-gnu
             rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
             
             cargo install dadk --version 0.1.2

+ 1 - 1
Makefile

@@ -1,6 +1,6 @@
 # The toolchain we use.
 # You can get it by running DragonOS' `tools/bootstrap.sh`
-TOOLCHAIN="+nightly-2023-08-15-x86_64-unknown-linux-gnu"
+TOOLCHAIN="+nightly-2024-11-05-x86_64-unknown-linux-gnu"
 RUSTFLAGS+=""
 
 ifdef DADK_CURRENT_BUILD_DIR

+ 1 - 1
rust-toolchain.toml

@@ -1,3 +1,3 @@
 [toolchain]
-channel = "nightly-2023-08-15"
+channel = "nightly-2024-11-05"
 components = ["rust-src"]