2022-06-22 22:14:32 -05:00
|
|
|
set "RUSTFLAGS=-D warnings"
|
2023-01-24 14:16:03 -06:00
|
|
|
set "RUSTFMT_CI=1"
|
2022-06-22 22:14:32 -05:00
|
|
|
|
|
|
|
:: Print version information
|
|
|
|
rustc -Vv || exit /b 1
|
|
|
|
cargo -V || exit /b 1
|
|
|
|
|
|
|
|
:: Build and test main crate
|
2023-10-22 20:21:44 -05:00
|
|
|
if "%CFG_RELEASE_CHANNEL%"=="nightly" (
|
|
|
|
cargo build --locked --all-features || exit /b 1
|
|
|
|
) else (
|
|
|
|
cargo build --locked || exit /b 1
|
|
|
|
)
|
2022-06-22 22:14:32 -05:00
|
|
|
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
|