Skip to content

Commit

Permalink
ci: enable asm-keccak on more platforms (#8609)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Aug 5, 2024
1 parent 42d44bf commit f2518c9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 31 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ jobs:
run: |
set -eo pipefail
target="${{ matrix.target }}"
flags=(--release --bins --no-default-features --features rustls,aws-kms,cli)
flags=(--release --bins --no-default-features --features rustls,aws-kms,cli,asm-keccak)
# `jemalloc` and `keccak-asm` are not supported on MSVC or aarch64 Linux.
# `jemalloc` is not fully supported on MSVC or aarch64 Linux.
if [[ "$target" != *msvc* && "$target" != "aarch64-unknown-linux-gnu" ]]; then
flags+=(--features asm-keccak,jemalloc)
flags+=(--features jemalloc)
fi
[[ "$target" == *windows* ]] && exe=".exe"
Expand Down
52 changes: 24 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f2518c9

Please sign in to comment.