summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/ci/build_and_test.bat
blob: ef41017783feb6e44f576f3bc3e58b8a8bdfa1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set "RUSTFLAGS=-D warnings"

:: 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