Skip to content

Commit

Permalink
ci: switch from cargo-wasi to directly using the wasip1 target (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien authored Nov 8, 2024
1 parent fa8ad00 commit f162807
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ jobs:
run: cargo build
- name: Test
run: cargo test
wasi:
name: WASI Test Build
wasip1:
name: WASI P1 Test Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@nightly
- name: Install Cargo WASI
run: cargo install cargo-wasi
with:
targets: wasm32-wasip1
- name: Build
run: cargo wasi build --features nightly
run: cargo build --target wasm32-wasip1 --features nightly
wasm:
name: WASM Test Build
runs-on: ubuntu-latest
Expand Down

0 comments on commit f162807

Please sign in to comment.