From c84b75c83095b0cfd213ed8efa742f06ac1e06b2 Mon Sep 17 00:00:00 2001 From: James Kay Date: Thu, 19 Sep 2024 13:08:37 +0100 Subject: [PATCH] `.github/workflows/rust.yml`: run Web tests with nightly toolchain --- .github/workflows/rust.yml | 3 +++ linera-service/template/rust-toolchain.toml.template | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ea2b421623a..d247e3f9094 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -114,6 +114,9 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@v3 + - name: Switch to nightly Rust toolchain + run: | + ln -sf toolchains/nightly/rust-toolchain.toml - uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Compile `linera-client` for the browser run: | diff --git a/linera-service/template/rust-toolchain.toml.template b/linera-service/template/rust-toolchain.toml.template index 3456b0009e5..e01fe10aba9 120000 --- a/linera-service/template/rust-toolchain.toml.template +++ b/linera-service/template/rust-toolchain.toml.template @@ -1 +1 @@ -../../toolchains/stable/rust-toolchain.toml \ No newline at end of file +../../rust-toolchain.toml \ No newline at end of file