Skip to content

Commit

Permalink
Merge pull request #534 from matter-labs/nish-disable-keccak-asm
Browse files Browse the repository at this point in the history
fix: disable releases with asm-keccak feature
  • Loading branch information
nbaztec authored Aug 19, 2024
2 parents 82ac183 + 2568914 commit 348ea85
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,11 @@ jobs:
target="${{ matrix.target }}"
flags=()
# Remove jemalloc, only keep `asm-keccak` if applicable
if [[ "$target" != *msvc* && "$target" != "aarch64-unknown-linux-gnu" ]]; then
flags+=(--features asm-keccak)
fi
# Disable asm-keccak, see https://github.com/alloy-rs/core/issues/711
# # Remove jemalloc, only keep `asm-keccak` if applicable
# if [[ "$target" != *msvc* && "$target" != "aarch64-unknown-linux-gnu" ]]; then
# flags+=(--features asm-keccak)
# fi
cargo build --release --bin forge --bin cast --target "$target" "${flags[@]}"
Expand Down

0 comments on commit 348ea85

Please sign in to comment.