Skip to content

Commit fa536f6

Browse files
committed
[CI] Set rust toolchain to nightly-2020-10-06
1 parent 71d420a commit fa536f6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/.autobuild.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
container:
2222
image: secondstate/substrate-ssvm
2323

24+
strategy:
25+
matrix:
26+
toolchain: ['nightly-2020-10-06']
27+
2428
# Steps represent a sequence of tasks that will be executed as part of the job
2529
steps:
2630
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -31,4 +35,7 @@ jobs:
3135
run: |
3236
ln -sf /root/.rustup $HOME/
3337
ln -sf /root/.cargo $HOME/
34-
cargo build --release
38+
rustup toolchain install ${{ matrix.toolchain }}
39+
rustup target add wasm32-unknown-unknown --toolchain ${{ matrix.toolchain }}
40+
rustup default ${{ matrix.toolchain }}
41+
cargo build --release

0 commit comments

Comments
 (0)