Riven/test-full.bash
2024-02-24 21:42:06 -08:00

16 lines
399 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
# Ensure stable builds.
cargo +stable check --all-targets --features __proxy
cargo +stable check --all-targets --features tracing,__proxy
# Ensure nightly builds.
cargo check --all-targets --features nightly,tracing,__proxy
cargo build --all-targets --features nightly,deny-unknown,__proxy
# Run nightly tests.
bash test.bash
# Run wasm tests.
bash test-wasm.bash