blob: 8fa0f67b0d02184e63d299bfcf0befb7ee82ce9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
set -euo pipefail
export RUSTFLAGS="-D warnings"
# Print version information
rustc -Vv
cargo -V
# Build and test main crate
cargo build --locked
cargo test
# Build and test other crates
cd config_proc_macro
cargo build --locked
cargo test
|