2022-06-21 10:23:13 -05:00
|
|
|
set "RUSTFLAGS=-D warnings"
|
2022-06-21 18:28:04 -05:00
|
|
|
set "RUSTFMT_CI=1"
|
2022-06-21 10:23:13 -05:00
|
|
|
|
|
|
|
:: Print version information
|
|
|
|
rustc -Vv || exit /b 1
|
|
|
|
cargo -V || exit /b 1
|
|
|
|
|
|
|
|
:: Build and test main crate
|
|
|
|
cargo build --locked || exit /b 1
|
|
|
|
cargo test || exit /b 1
|
|
|
|
|
|
|
|
:: Build and test other crates
|
|
|
|
cd config_proc_macro || exit /b 1
|
|
|
|
cargo build --locked || exit /b 1
|
|
|
|
cargo test || exit /b 1
|