Riven/test-full.bash

17 lines
399 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2022-08-15 23:01:07 +00:00
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
2022-08-15 23:01:07 +00:00
# Run nightly tests.
bash test.bash
# Run wasm tests.
bash test-wasm.bash