diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-09-16 18:10:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 12:10:40 +0200 |
commit | 35ed3ce8d914f46a0b5cdc66d05f6cecf895b966 (patch) | |
tree | fa7ce41f5ed5d343a194420fe6d0a7042fa163dd | |
parent | 0715803b7fdf6399f447f9fd2fdd2aa8b41beac7 (diff) |
ci: remove wasm target installation step (#7512)
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c3e627de..557ae0a9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,12 +68,6 @@ jobs: with: rust-version: 1.46.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: | |