Skip to content

Commit

Permalink
remove cargo-wasi
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Nov 8, 2024
1 parent 1e6de2f commit 5e82b26
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,30 @@ 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 build --target wasm32-wasip1 --features nightly
wasip2:
name: WASI P2 Test Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@nightly
with:
targets: wasm32-wasip1
- name: Build
run: cargo wasi build --features nightly
run: cargo build --target wasm32-wasip2 --features nightly
wasm:
name: WASM Test Build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5e82b26

Please sign in to comment.