summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-06-24 21:27:31 +0800
committerGitHub <noreply@github.com>2020-06-24 09:27:31 -0400
commita354b248ea8ecb7fb10742322d7a36ad71eddf0a (patch)
treeafaf2c921163388e3883dfae4e0eca19cced7fd5 /.github/workflows
parentf4397e5ec99c539e4c6977e3eff873d672f98413 (diff)
feat(std/wasi): add wasi_snapshot_preview1 (#6441)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 532a7c1e7..e06cdda7d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -68,6 +68,12 @@ jobs:
with:
rust-version: 1.44.0
+ - name: Install rust targets
+ run: |
+ # Necessary for the std/wasi tests
+ rustup target add wasm32-unknown-unknown
+ rustup target add wasm32-wasi
+
- name: Install clippy and rustfmt
if: matrix.config.kind == 'lint'
run: |