ignore wasm-validate OOMs #55
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] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
wasabi_wasm: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt install wabt && wasm-validate --version | |
name: Install WABT | |
- run: cargo --version; rustc --version; cargo clippy --version | |
name: Rust version | |
- run: cargo build | |
working-directory: crates/wasabi_wasm/ | |
- run: cargo clippy | |
working-directory: crates/wasabi_wasm/ | |
- run: cargo test -- --nocapture --test-threads=1 --color=always | |
working-directory: crates/wasabi_wasm/ | |
wasabi: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt install wabt && wasm-validate --version | |
name: Install WABT | |
- run: cargo --version; rustc --version; cargo clippy --version | |
name: Rust version | |
- run: cargo build | |
working-directory: crates/wasabi/ | |
- run: cargo clippy | |
working-directory: crates/wasabi/ | |
- run: cargo test -- --nocapture --test-threads=1 --color=always | |
working-directory: crates/wasabi/ | |
env: | |
# Let's limit this to only two workers in the hope that this limits max memory usage and thus OOMs. | |
RAYON_NUM_THREADS: 2 |