removes all occurences of CTAP 2.1 flags from workflows
This commit is contained in:
16
.github/workflows/cargo_check.yml
vendored
16
.github/workflows/cargo_check.yml
vendored
@@ -42,12 +42,6 @@ jobs:
|
|||||||
command: check
|
command: check
|
||||||
args: --target thumbv7em-none-eabi --release --features with_ctap1
|
args: --target thumbv7em-none-eabi --release --features with_ctap1
|
||||||
|
|
||||||
- name: Check OpenSK with_ctap2_1
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: check
|
|
||||||
args: --target thumbv7em-none-eabi --release --features with_ctap2_1
|
|
||||||
|
|
||||||
- name: Check OpenSK debug_ctap
|
- name: Check OpenSK debug_ctap
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
@@ -78,17 +72,11 @@ jobs:
|
|||||||
command: check
|
command: check
|
||||||
args: --target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1
|
args: --target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1
|
||||||
|
|
||||||
- name: Check OpenSK debug_ctap,with_ctap2_1
|
- name: Check OpenSK debug_ctap,with_ctap1,panic_console,debug_allocations,verbose
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: check
|
command: check
|
||||||
args: --target thumbv7em-none-eabi --release --features debug_ctap,with_ctap2_1
|
args: --target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1,,panic_console,debug_allocations,verbose
|
||||||
|
|
||||||
- name: Check OpenSK debug_ctap,with_ctap1,with_ctap2_1,panic_console,debug_allocations,verbose
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: check
|
|
||||||
args: --target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1,with_ctap2_1,panic_console,debug_allocations,verbose
|
|
||||||
|
|
||||||
- name: Check examples
|
- name: Check examples
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
|
|||||||
24
.github/workflows/opensk_test.yml
vendored
24
.github/workflows/opensk_test.yml
vendored
@@ -51,27 +51,3 @@ jobs:
|
|||||||
command: test
|
command: test
|
||||||
args: --features std,with_ctap1
|
args: --features std,with_ctap1
|
||||||
|
|
||||||
- name: Unit testing of CTAP2 (release mode + CTAP2.1)
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --release --features std,with_ctap2_1
|
|
||||||
|
|
||||||
- name: Unit testing of CTAP2 (debug mode + CTAP2.1)
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --features std,with_ctap2_1
|
|
||||||
|
|
||||||
- name: Unit testing of CTAP2 (release mode + CTAP1 + CTAP2.1)
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --release --features std,with_ctap1,with_ctap2_1
|
|
||||||
|
|
||||||
- name: Unit testing of CTAP2 (debug mode + CTAP1 + CTAP2.1)
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --features std,with_ctap1,with_ctap2_1
|
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ cargo test --manifest-path tools/heapviz/Cargo.toml
|
|||||||
echo "Checking that CTAP2 builds properly..."
|
echo "Checking that CTAP2 builds properly..."
|
||||||
cargo check --release --target=thumbv7em-none-eabi
|
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 with_ctap1
|
||||||
cargo check --release --target=thumbv7em-none-eabi --features with_ctap2_1
|
|
||||||
cargo check --release --target=thumbv7em-none-eabi --features debug_ctap
|
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 panic_console
|
||||||
cargo check --release --target=thumbv7em-none-eabi --features debug_allocations
|
cargo check --release --target=thumbv7em-none-eabi --features debug_allocations
|
||||||
@@ -116,16 +115,4 @@ then
|
|||||||
|
|
||||||
echo "Running unit tests on the desktop (debug mode + CTAP1)..."
|
echo "Running unit tests on the desktop (debug mode + CTAP1)..."
|
||||||
cargo test --features std,with_ctap1
|
cargo test --features std,with_ctap1
|
||||||
|
|
||||||
echo "Running unit tests on the desktop (release mode + CTAP2.1)..."
|
|
||||||
cargo test --release --features std,with_ctap2_1
|
|
||||||
|
|
||||||
echo "Running unit tests on the desktop (debug mode + CTAP2.1)..."
|
|
||||||
cargo test --features std,with_ctap2_1
|
|
||||||
|
|
||||||
echo "Running unit tests on the desktop (release mode + CTAP1 + CTAP2.1)..."
|
|
||||||
cargo test --release --features std,with_ctap1,with_ctap2_1
|
|
||||||
|
|
||||||
echo "Running unit tests on the desktop (debug mode + CTAP1 + CTAP2.1)..."
|
|
||||||
cargo test --features std,with_ctap1,with_ctap2_1
|
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user