Skip to content

Commit 2cc4804

Browse files
committed
chore: bump rust toolchain version to 1.84.1
Signed-off-by: Peefy <[email protected]>
1 parent f3b018f commit 2cc4804

File tree

15 files changed

+18
-18
lines changed

15 files changed

+18
-18
lines changed

.github/workflows/compiler_base_test.yaml

+2-2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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/wasm_test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install rust nightly toolchain
2121
uses: actions-rs/toolchain@v1
2222
with:
23-
toolchain: 1.83
23+
toolchain: 1.84.1
2424
override: true
2525
components: clippy, rustfmt
2626

.github/workflows/windows_mingw_test.yaml

+1-1
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

+1-1
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

+3-3
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

+1-1
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

+1-1
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

scripts/docker/kcl-builder-centos7/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN yum install -y wget
4444

4545
# rust
4646
# https://www.rust-lang.org/tools/install
47-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.83.0
47+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.84.1
4848
ENV PATH="/root/.cargo/bin:${PATH}"
4949
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
5050

scripts/docker/kcl-builder-centos8/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN yum -y install ca-certificates
2323
# rust-1.54.0
2424
# cargo 1.54.0
2525
# RUN yum -y install rust cargo rustfmt
26-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.83.0
26+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.84.1
2727
RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
2828

2929
ENV PATH="/root/.cargo/bin:${PATH}"

scripts/docker/kcl-builder-fedora39/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN sed -i -e "s|#baseurl=http://download.example/pub/fedora/linux|baseurl=https
1313
RUN dnf -y install make which wget git ca-certificates clang llvm-devel libffi-devel python3-devel
1414

1515
# rust
16-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.83.0
16+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.84.0
1717
echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
1818
ENV PATH="/root/.cargo/bin:${PATH}"
1919
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true

scripts/docker/kcl-builder/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN ln -sf /usr/local/python3.9/bin/python3.9 /usr/bin/python3.9
2828

2929
# rust
3030
# https://www.rust-lang.org/tools/install
31-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.83.0
31+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.84.1
3232
ENV PATH="/root/.cargo/bin:${PATH}"
3333
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
3434

0 commit comments

Comments
 (0)