Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wngr committed Oct 10, 2021
1 parent 11ab2d7 commit 774465b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ jobs:
key: ${{ matrix.toolchain }}

- name: Build on ${{ matrix.toolchain }}
if: matrix.toolchain != wasm32-unknown-unknown
if: matrix.toolchain != 'wasm32-unknown-unknown'
# TODO: also run `cargo test`
# TODO: ideally we would build `--workspace`, but not all crates compile for WASM
run: cargo build --target=${{ matrix.toolchain }}

- name: Build on ${{ matrix.toolchain }}
if: matrix.toolchain == wasm32-unknown-unknown
if: matrix.toolchain == 'wasm32-unknown-unknown'
# TODO: also run `cargo test`
# TODO: ideally we would build `--workspace`, but not all crates compile for WASM
run: cargo build --target=${{ matrix.toolchain }} --features wasm-bindgen
Expand Down

0 comments on commit 774465b

Please sign in to comment.