mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2024-12-26 10:56:34 +00:00
16 lines
399 B
Bash
Executable file
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
|