Skip to content

Commit 66ce75e

Browse files
committed
Fix rustup toolchain version.
1 parent 7bb31cc commit 66ce75e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ name: wa-sqlite CI
55

66
on:
77
push:
8-
branches: ['master']
8+
branches: ["master"]
99
pull_request:
10-
branches: ['master']
10+
branches: ["master"]
1111

1212
env:
1313
EM_VERSION: 3.1.45
14-
EM_CACHE_FOLDER: 'emsdk-cache'
14+
EM_CACHE_FOLDER: "emsdk-cache"
1515

1616
jobs:
1717
build:
@@ -24,12 +24,12 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:
27-
submodules: 'recursive'
27+
submodules: "recursive"
2828
- name: Use Node.js ${{ matrix.node-version }}
2929
uses: actions/setup-node@v3
3030
with:
3131
node-version: ${{ matrix.node-version }}
32-
cache: 'npm'
32+
cache: "npm"
3333

3434
# Install yarn dependencies.
3535
- name: Get yarn cache directory path
@@ -45,8 +45,8 @@ jobs:
4545
- run: yarn install
4646
- name: Rust Setup
4747
run: |
48-
rustup toolchain install nightly-2023-08-28-x86_64-unknown-linux-gnu
49-
rustup component add rust-src --toolchain nightly-2023-08-28-x86_64-unknown-linux-gnu
48+
rustup toolchain install nightly-2024-05-18-x86_64-unknown-linux-gnu
49+
rustup component add rust-src --toolchain nightly-2024-05-18-x86_64-unknown-linux-gnu
5050
5151
- name: Test with checked-in WASM files
5252
run: yarn test --reporters progress

scripts/docker-setup.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
22
. $HOME/.cargo/env && \
3-
rustup toolchain install nightly-2023-08-28-aarch64-unknown-linux-gnu && \
4-
rustup component add rust-src --toolchain nightly-2023-08-28-aarch64-unknown-linux-gnu
3+
rustup toolchain install nightly-2024-05-18-aarch64-unknown-linux-gnu && \
4+
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-unknown-linux-gnu
55

66
sudo apt-get update -y
77
sudo apt-get install -y tclsh

0 commit comments

Comments
 (0)