Skip to content

Commit

Permalink
ci: remove hacspec from matrix
Browse files Browse the repository at this point in the history
actions were failing due to a weird bug,
e.g., see run #7831288886
  • Loading branch information
geonnave committed Feb 8, 2024
1 parent f8d71cb commit fb9829f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
crypto_backend: [lakers-crypto/hacspec, lakers-crypto/psa, lakers-crypto/rustcrypto]
crypto_backend: [lakers-crypto/psa, lakers-crypto/rustcrypto]
ead: [ead-none, ead-authz]

steps:
Expand All @@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
crypto_backend: [lakers-crypto/hacspec, lakers-crypto/psa, lakers-crypto/psa-baremetal, lakers-crypto/cryptocell310, lakers-crypto/rustcrypto]
crypto_backend: [lakers-crypto/psa, lakers-crypto/psa-baremetal, lakers-crypto/cryptocell310, lakers-crypto/rustcrypto]
ead: [ead-none, ead-authz]

steps:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
cd lakers
# generate the fstar files
cargo-hax -C -p lakers --no-default-features --features='lakers-crypto/hacspec, ead-none' --release \; into -i '-lakers::generate_connection_identifier_cbor -lakers::generate_connection_identifier' fstar
cargo-hax -C -p lakers --no-default-features --features='lakers-crypto/rustcrypto, ead-none' --release \; into -i '-lakers::generate_connection_identifier_cbor -lakers::generate_connection_identifier' fstar
cargo-hax -C -p lakers-shared \; into -i '-lakers_shared::ffi::**' fstar
# even if fstar generation was ok, fail if something is not implemented
Expand Down
2 changes: 1 addition & 1 deletion examples/coap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
lakers = { package = "lakers", path = "../../lib", features = ["ead-authz"] }
lakers-crypto = { path = "../../crypto/", features = [ "hacspec" ] }
lakers-crypto = { path = "../../crypto/", features = [ "rustcrypto" ] }
hexlit = "0.5.3"
coap = { version = "0.13" }
coap-lite = { version = "0.11.3" }
Expand Down

0 comments on commit fb9829f

Please sign in to comment.