-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: include config_proc_macro crate in ci (#5389)
* 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
- Loading branch information
1 parent
3de1a09
commit 2c8b3be
Showing
7 changed files
with
64 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
export RUSTFLAGS="-D warnings" | ||
|
||
# Print version information | ||
rustc -Vv | ||
cargo -V | ||
|
||
# Build and test main crate | ||
cargo build --locked | ||
cargo test | ||
|
||
# Build and test other crates | ||
cd config_proc_macro | ||
cargo build --locked | ||
cargo test |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters