about summary refs log tree commit diff
path: root/src/tools/rustfmt/ci/build_and_test.bat
blob: 16608a4aaa730fab66fb2c8b71f62a96e1ea2f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set "RUSTFLAGS=-D warnings"
set "RUSTFMT_CI=1"

:: Print version information
rustc -Vv || exit /b 1
cargo -V || exit /b 1

:: Build and test main crate
if "%CFG_RELEASE_CHANNEL%"=="nightly" (
    cargo build --locked --all-features || exit /b 1
) else (
    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