From f30ac8e20f5e43d7cb6c72cf4171181d8d14de08 Mon Sep 17 00:00:00 2001 From: Damilare Date: Fri, 15 Sep 2023 10:48:35 +0100 Subject: [PATCH] CI nightly toolchain changed --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be1ebda..96bab63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Install toolchain uses: dtolnay/rust-toolchain@nightly with: - toolchain: nightly-2023-09-13 + toolchain: nightly-2023-08-23 targets: wasm32-unknown-unknown - name: Install Protoc @@ -34,16 +34,16 @@ jobs: - name: Build run: | - cargo +nightly-2023-09-13 check --workspace --all-targets --all-features --verbose --locked + cargo +nightly-2023-08-23 check --workspace --all-targets --all-features --verbose --locked - name: Build `no-std` run: | - cargo +nightly-2023-09-13 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked - cargo +nightly-2023-09-13 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked + cargo +nightly-2023-08-23 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked + cargo +nightly-2023-08-23 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked - name: Test run: | - cargo +nightly-2023-09-13 test -p pallet-ismp --all-targets --all-features --verbose --locked + cargo +nightly-2023-08-23 test -p pallet-ismp --all-targets --all-features --verbose --locked lint: runs-on: ubuntu-latest