2c8b3bef2b
* config_proc_macro: fix failing doctests * ci: include config_proc_macro crate in ci * [review] working native windows ci * [fix] add --locked file for ci * [fix] quoting of cmd variables
15 lines
315 B
Batchfile
Executable File
15 lines
315 B
Batchfile
Executable File
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
|