Skip to content

Commit 4413ebf

Browse files
committed
toolchain: Upgrade rust toolchain from 1.85.0 to 1.91.0
1 parent 1abea92 commit 4413ebf

12 files changed

+14
-14
lines changed

.github/workflows/ci_aarch64_build_ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: dtolnay/rust-toolchain@master
4747
with:
48-
toolchain: 1.85.0
48+
toolchain: 1.91.0
4949
components: rustfmt
5050
- run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y && sudo apt-get install -y gcc-multilib
5151
- name: ci_aarch64_build_ubuntu

.github/workflows/ci_benchmarks_ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- uses: dtolnay/rust-toolchain@master
5353
with:
54-
toolchain: 1.85.0
54+
toolchain: 1.91.0
5555
components: rustfmt, clippy
5656
- run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config libclang-dev
5757
- uses: actions/checkout@v4

.github/workflows/ci_integration_tests_ubuntu.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
59-
toolchain: 1.85.0
59+
toolchain: 1.91.0
6060
components: rustfmt, clippy
6161
- run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config libclang-dev
6262
- uses: actions/checkout@v4
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: dtolnay/rust-toolchain@master
8585
with:
86-
toolchain: 1.85.0
86+
toolchain: 1.91.0
8787
components: rustfmt, clippy
8888
- run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config libclang-dev
8989
- uses: actions/checkout@v4

.github/workflows/ci_linters_ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v4
5454
- uses: dtolnay/rust-toolchain@master
5555
with:
56-
toolchain: 1.85.0
56+
toolchain: 1.91.0
5757
components: rustfmt, clippy
5858
- run: cargo fmt --all -- --check
5959
- run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y

.github/workflows/ci_quick_checks_ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: dtolnay/rust-toolchain@master
5454
with:
55-
toolchain: 1.85.0
55+
toolchain: 1.91.0
5656
components: rustfmt, clippy
5757
- uses: actions/checkout@v4
5858
- run: cargo fmt --all -- --check

.github/workflows/ci_unit_tests_ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: dtolnay/rust-toolchain@master
5454
with:
55-
toolchain: 1.85.0
55+
toolchain: 1.91.0
5656
- run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config libclang-dev
5757
- name: Install nextest
5858
uses: taiki-e/install-action@nextest

.github/workflows/coverage_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: dtolnay/rust-toolchain@master
1818
with:
19-
toolchain: 1.85.0
19+
toolchain: 1.91.0
2020
components: rustfmt,llvm-tools-preview
2121
- run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y && sudo apt-get install -y gcc-multilib
2222
- name: unit coverage

.github/workflows/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
name: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
8383
path: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
8484
env:
85-
BUILDER_IMAGE: nervos/ckb-docker-builder:bionic-rust-1.85.0
85+
BUILDER_IMAGE: nervos/ckb-docker-builder:bionic-rust-1.91.0
8686
REL_PKG: ${{ matrix.rel_pkg }}
8787

8888
package-for-linux-aarch64:
@@ -166,7 +166,7 @@ jobs:
166166
name: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
167167
path: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
168168
env:
169-
BUILDER_IMAGE: nervos/ckb-docker-builder:centos-7-rust-1.85.0
169+
BUILDER_IMAGE: nervos/ckb-docker-builder:centos-7-rust-1.91.0
170170
REL_PKG: ${{ matrix.rel_pkg }}
171171

172172
package-for-mac:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build = "build.rs"
88
description = "CKB is the layer 1 of Nervos Network, a public/permissionless blockchain."
99
homepage = "https://github.com/nervosnetwork/ckb"
1010
repository = "https://github.com/nervosnetwork/ckb"
11-
rust-version = "1.85.0"
11+
rust-version = "1.91.0"
1212

1313
[[bin]]
1414
name = "ckb"

docker/hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nervos/ckb-docker-builder:bionic-rust-1.85.0 as ckb-docker-builder
1+
FROM nervos/ckb-docker-builder:bionic-rust-1.91.0 as ckb-docker-builder
22

33
WORKDIR /ckb
44
COPY ./ .

0 commit comments

Comments
 (0)