Skip to content

Commit f2518c9

Browse files
authored
ci: enable asm-keccak on more platforms (#8609)
1 parent 42d44bf commit f2518c9

File tree

2 files changed

+27
-31
lines changed

2 files changed

+27
-31
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ jobs:
133133
run: |
134134
set -eo pipefail
135135
target="${{ matrix.target }}"
136-
flags=(--release --bins --no-default-features --features rustls,aws-kms,cli)
136+
flags=(--release --bins --no-default-features --features rustls,aws-kms,cli,asm-keccak)
137137
138-
# `jemalloc` and `keccak-asm` are not supported on MSVC or aarch64 Linux.
138+
# `jemalloc` is not fully supported on MSVC or aarch64 Linux.
139139
if [[ "$target" != *msvc* && "$target" != "aarch64-unknown-linux-gnu" ]]; then
140-
flags+=(--features asm-keccak,jemalloc)
140+
flags+=(--features jemalloc)
141141
fi
142142
143143
[[ "$target" == *windows* ]] && exe=".exe"

Cargo.lock

Lines changed: 24 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)