We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d420a commit fa536f6Copy full SHA for fa536f6
.github/workflows/.autobuild.yml
@@ -21,6 +21,10 @@ jobs:
21
container:
22
image: secondstate/substrate-ssvm
23
24
+ strategy:
25
+ matrix:
26
+ toolchain: ['nightly-2020-10-06']
27
+
28
# Steps represent a sequence of tasks that will be executed as part of the job
29
steps:
30
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -31,4 +35,7 @@ jobs:
31
35
run: |
32
36
ln -sf /root/.rustup $HOME/
33
37
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