add Send restriction to resource table #222
Workflow file for this run
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: Rust | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache installation of tools | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo | |
~/.rustup | |
key: ${{ runner.os }}-installation | |
- name: Add wasm32 target | |
run: rustup target add wasm32-unknown-unknown | |
- name: Add wasm32-wasi target | |
run: rustup target add wasm32-wasi | |
- name: Install wasm-pack | |
run: cargo install --version 0.12.1 wasm-pack | |
- name: Install cargo component | |
run: cargo install --locked --version 0.11.0 cargo-component | |
# There are issues with dependecies not following semver, see https://github.com/bytecodealliance/cargo-component/issues/293 | |
# run: cargo install --git https://github.com/kajacx/cargo-component.git --rev 4c53ea0cc7b4423028f406a1a609ac72c04002c8 cargo-component | |
- name: Install cargo expand | |
run: cargo install cargo-expand | |
- uses: actions/checkout@v3 | |
- name: Cache build folders | |
uses: actions/cache@v3 | |
with: | |
path: | | |
Cargo.lock | |
target | |
tests/instance | |
key: ${{ runner.os }}-build-folders-${{ hashFiles('Cargo.toml', 'crates/*/Cargo.toml') }} | |
restore-keys: ${{ runner.os }}-build-folders | |
- name: Run unit tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd crates/wasm-bridge && wasm-pack test --node -- --all-features | |
- name: Run wasi unit tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd crates/wasm-bridge-wasi && wasm-pack test --node -- --all-features | |
- name: Check formatting | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo fmt --all -- --check | |
- name: Check compile warnings | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo check --target wasm32-unknown-unknown --all-features | |
- name: Check clippy warnings | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo clippy --target wasm32-unknown-unknown --all-features -- -D clippy::all | |
- name: Run tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd tests && bash run_all_tests.sh |