Add more cargo check combinations, to include the panic_console and debug_allocations features.

This commit is contained in:
Guillaume Endignoux
2020-03-02 16:16:55 +01:00
parent 0547a02b3f
commit 9f6207f5a5
2 changed files with 21 additions and 0 deletions

View File

@@ -28,7 +28,10 @@ echo "Checking that CTAP2 builds properly..."
cargo check --release --target=thumbv7em-none-eabi
cargo check --release --target=thumbv7em-none-eabi --features with_ctap1
cargo check --release --target=thumbv7em-none-eabi --features debug_ctap
cargo check --release --target=thumbv7em-none-eabi --features panic_console
cargo check --release --target=thumbv7em-none-eabi --features debug_allocations
cargo check --release --target=thumbv7em-none-eabi --features debug_ctap,with_ctap1
cargo check --release --target=thumbv7em-none-eabi --features debug_ctap,with_ctap1,panic_console,debug_allocations
echo "Checking that examples build properly..."
cargo check --release --target=thumbv7em-none-eabi --examples