Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenSK
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
koenigl2
OpenSK
Commits
9f6207f5
Commit
9f6207f5
authored
5 years ago
by
Guillaume Endignoux
Browse files
Options
Downloads
Patches
Plain Diff
Add more cargo check combinations, to include the panic_console and debug_allocations features.
parent
0547a02b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/cargo_check.yml
+18
-0
18 additions, 0 deletions
.github/workflows/cargo_check.yml
run_desktop_tests.sh
+3
-0
3 additions, 0 deletions
run_desktop_tests.sh
with
21 additions
and
0 deletions
.github/workflows/cargo_check.yml
+
18
−
0
View file @
9f6207f5
...
...
@@ -46,12 +46,30 @@ jobs:
command
:
check
args
:
--target thumbv7em-none-eabi --release --features debug_ctap
-
name
:
Check OpenSK panic_console
uses
:
actions-rs/cargo@v1
with
:
command
:
check
args
:
--target thumbv7em-none-eabi --release --features panic_console
-
name
:
Check OpenSK debug_allocations
uses
:
actions-rs/cargo@v1
with
:
command
:
check
args
:
--target thumbv7em-none-eabi --release --features debug_allocations
-
name
:
Check OpenSK debug_ctap,with_ctap1
uses
:
actions-rs/cargo@v1
with
:
command
:
check
args
:
--target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1
-
name
:
Check OpenSK debug_ctap,with_ctap1,panic_console,debug_allocations
uses
:
actions-rs/cargo@v1
with
:
command
:
check
args
:
--target thumbv7em-none-eabi --release --features debug_ctap,with_ctap1,panic_console,debug_allocations
-
name
:
Check examples
uses
:
actions-rs/cargo@v1
with
:
...
...
This diff is collapsed.
Click to expand it.
run_desktop_tests.sh
+
3
−
0
View file @
9f6207f5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment