From c5b3104ce668b6aac17e0e3ba8c6a7bfd29ee755 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Thu, 2 Dec 2021 11:05:42 +0000 Subject: [PATCH] need wasm also for CI --- .github/workflows/rust.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 384f814866..f1ddbef5df 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,6 +37,7 @@ jobs: with: profile: minimal toolchain: nightly + target: wasm32-unknown-unknown override: true - name: Rust Cache @@ -86,11 +87,11 @@ jobs: mkdir -p ~/.local/bin mv substrate ~/.local/bin - - name: Install Rust nightly toolchain + - name: Install Rust stable toolchain uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable override: true - name: Rust Cache @@ -118,6 +119,7 @@ jobs: with: profile: minimal toolchain: nightly + target: wasm32-unknown-unknown override: true - name: Rust Cache @@ -143,11 +145,11 @@ jobs: mkdir -p ~/.local/bin mv substrate ~/.local/bin - - name: Install Rust nightly toolchain + - name: Install Rust stable toolchain uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable components: clippy override: true