Skip to content

Commit a3b0af6

Browse files
authored
chore: bump rust toolchain version to 1.84.1 (#1875)
* chore: bump rust toolchain version to 1.84.1 Signed-off-by: Peefy <[email protected]> * chore: build wasm-wasi target using rust 1.83 Signed-off-by: Peefy <[email protected]> --------- Signed-off-by: Peefy <[email protected]>
1 parent f3b018f commit a3b0af6

File tree

14 files changed

+17
-17
lines changed

14 files changed

+17
-17
lines changed

.github/workflows/compiler_base_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install rust nightly toolchain
2323
uses: actions-rs/toolchain@v1
2424
with:
25-
toolchain: 1.83
25+
toolchain: 1.84.1
2626
override: true
2727
components: clippy, rustfmt
2828
- name: Rust code format check
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install rust nightly toolchain
4444
uses: actions-rs/toolchain@v1
4545
with:
46-
toolchain: 1.83
46+
toolchain: 1.84.1
4747
override: true
4848
components: clippy, rustfmt
4949
- name: Compiler_base rust unit test

.github/workflows/macos_arm_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust nightly toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.83
35+
toolchain: 1.84.1
3636
override: true
3737
components: clippy, rustfmt
3838
- name: Set up python

.github/workflows/macos_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install rust nightly toolchain
4848
uses: actions-rs/toolchain@v1
4949
with:
50-
toolchain: 1.83
50+
toolchain: 1.84.1
5151
override: true
5252
components: clippy, rustfmt
5353
- name: Code format check

.github/workflows/ubuntu_arm_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust nightly toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.83
35+
toolchain: 1.84.1
3636
override: true
3737
components: clippy, rustfmt
3838
- name: Code format check

.github/workflows/ubuntu_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust nightly toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.83
35+
toolchain: 1.84.1
3636
override: true
3737
components: clippy, rustfmt
3838
- name: Code format check

.github/workflows/windows_mingw_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install rust nightly toolchain
2020
uses: actions-rs/toolchain@v1
2121
with:
22-
toolchain: 1.83
22+
toolchain: 1.84.1
2323
override: true
2424
components: clippy, rustfmt
2525

.github/workflows/windows_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install rust nightly toolchain
2323
uses: actions-rs/toolchain@v1
2424
with:
25-
toolchain: 1.83
25+
toolchain: 1.84.1
2626
override: true
2727
components: clippy, rustfmt
2828

docs/dev_guide/2.quick_start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Using a docker image is our recommended way, of course, you can also configure y
4242
#### macOS and OS X
4343

4444
- `git`
45-
- `Rust 1.83+`
45+
- `Rust 1.84+`
4646
- `LLVM 12` (Optional, only for the LLVM backend and release)
4747
- `Python 3.7+` (Optional, only for integration tests)
4848

@@ -63,7 +63,7 @@ export PATH=<your LLVM 12 install location>/bin:$PATH
6363
#### Linux
6464

6565
- `git`
66-
- `Rust 1.83+`
66+
- `Rust 1.84+`
6767
- `LLVM 12` (Optional, only for the LLVM backend and release)
6868
- `Python3 Building Dependencies` (Optional, only for integration tests)
6969

@@ -106,7 +106,7 @@ ln -sf /usr/bin/wasm-ld-12 /usr/bin/wasm-ld
106106
#### Windows
107107

108108
- `git`
109-
- `Rust 1.83+`
109+
- `Rust 1.84+`
110110
- `LLVM 12` (Optional, only for the LLVM backend and release)
111111
- `Python 3.7+` (Only for integration tests)
112112

scripts/docker/kcl-builder-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ENV GOPATH=/go \
2828
CARGO_NET_GIT_FETCH_WITH_CLI=true
2929

3030
# install rust and cargo
31-
RUN wget -qO- https://sh.rustup.rs | bash -s -- -y --default-toolchain 1.83.0 \
31+
RUN wget -qO- https://sh.rustup.rs | bash -s -- -y --default-toolchain 1.84.1 \
3232
&& echo 'source $HOME/.cargo/env' >> $HOME/.ashrc \
3333
&& . $HOME/.cargo/env \
3434
&& cargo version \

scripts/docker/kcl-builder-arm64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apt-get install -y curl make gcc git zlib1g-dev
1212
RUN apt install -y pkg-config libssl-dev
1313

1414
# rust
15-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.83.0
15+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.84.1
1616
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
1717

1818
RUN cargo version

0 commit comments

Comments
 (0)