Rename wasm32-wasi
to wasm32-wasip1
(#93)
#212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [stable, beta, nightly] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} && rustup component add rustfmt | |
- run: rustup target add wasm32-wasip1 wasm32-unknown-unknown | |
- run: cargo build --workspace | |
- run: cargo build --workspace --no-default-features | |
- run: cargo build --workspace --target wasm32-wasip1 | |
- run: cargo build --workspace --target wasm32-wasip1 --no-default-features | |
- run: cargo test --workspace --doc | |
- name: Install Wasmtime | |
uses: bytecodealliance/actions/wasmtime/setup@v1 | |
with: | |
version: "v19.0.0" | |
- name: Install wasm-tools | |
uses: bytecodealliance/actions/wasm-tools/setup@v1 | |
with: | |
version: "1.202.0" | |
- run: curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v19.0.0/wasi_snapshot_preview1.command.wasm | |
- run: cargo build --examples --target wasm32-wasip1 --no-default-features | |
- run: wasm-tools component new ./target/wasm32-wasip1/debug/examples/hello-world-no_std.wasm --adapt ./wasi_snapshot_preview1.command.wasm -o component.wasm | |
- run: wasmtime run component.wasm | |
- run: cargo build --examples --target wasm32-unknown-unknown --no-default-features | |
- run: wasm-tools component new ./target/wasm32-unknown-unknown/debug/examples/cli_command_no_std.wasm -o component.wasm | |
- run: wasmtime run component.wasm | |
- run: wasm-tools component new ./target/wasm32-unknown-unknown/debug/examples/http_proxy_no_std.wasm -o component.wasm | |
- run: wasm-tools component targets wit component.wasm -w wasi:http/proxy | |
- run: cargo build --examples --target wasm32-wasip1 | |
- run: wasm-tools component new ./target/wasm32-wasip1/debug/examples/hello-world.wasm --adapt ./wasi_snapshot_preview1.command.wasm -o component.wasm | |
- run: wasmtime run component.wasm | |
- run: cargo build --examples --target wasm32-unknown-unknown | |
- run: wasm-tools component new ./target/wasm32-unknown-unknown/debug/examples/cli_command.wasm -o component.wasm | |
- run: wasmtime run component.wasm | |
- run: wasm-tools component new ./target/wasm32-unknown-unknown/debug/examples/http_proxy.wasm -o component.wasm | |
- run: wasm-tools component targets wit component.wasm -w wasi:http/proxy | |
- run: cargo build --examples --workspace --target wasm32-wasip1 --features rand | |
- run: wasm-tools component new ./target/wasm32-wasip1/debug/examples/rand.wasm --adapt ./wasi_snapshot_preview1.command.wasm -o component.wasm | |
- run: wasmtime run component.wasm | |
rustfmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup update stable && rustup default stable && rustup component add rustfmt | |
- run: cargo fmt -- --check | |
generate: | |
name: Ensure generated code up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup update stable && rustup default stable | |
- run: cargo install [email protected] --locked | |
- run: ./ci/regenerate.sh | |
- run: git diff --exit-code |