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 7664ee7
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,26 @@ 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
- name: Build
run: cargo wasi build --features nightly
run: cargo build --target wasm32-wasip1 build --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
- name: Build
run: cargo build --target wasm32-wasip2 build --features nightly
wasm:
name: WASM Test Build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7664ee7

Please sign in to comment.