diff options
| author | Casper Beyer <caspervonb@pm.me> | 2020-06-24 21:27:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-24 09:27:31 -0400 |
| commit | a354b248ea8ecb7fb10742322d7a36ad71eddf0a (patch) | |
| tree | afaf2c921163388e3883dfae4e0eca19cced7fd5 /.github/workflows | |
| parent | f4397e5ec99c539e4c6977e3eff873d672f98413 (diff) | |
feat(std/wasi): add wasi_snapshot_preview1 (#6441)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
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: | |
