Skip to content

Commit e93900d

Browse files
committed
feature
1 parent 126ee19 commit e93900d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
run: |
160160
set -eo pipefail
161161
flags=(--target $TARGET --profile $PROFILE --bins
162-
--no-default-features --features aws-kms,gcp-kms,cli,asm-keccak)
162+
--no-default-features --features aws-kms,gcp-kms,cli,asm-keccak,js-tracer)
163163
164164
# `jemalloc` is not fully supported on MSVC or aarch64 Linux.
165165
if [[ "$TARGET" != *msvc* && "$TARGET" != "aarch64-unknown-linux-gnu" ]]; then

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ build-%:
4646

4747
.PHONY: docker-build-push
4848
docker-build-push: docker-build-prepare ## Build and push a cross-arch Docker image tagged with DOCKER_IMAGE_NAME.
49-
FEATURES="jemalloc aws-kms gcp-kms cli asm-keccak" $(MAKE) build-x86_64-unknown-linux-gnu
49+
FEATURES="jemalloc aws-kms gcp-kms cli asm-keccak js-tracer" $(MAKE) build-x86_64-unknown-linux-gnu
5050
mkdir -p $(BIN_DIR)/amd64
5151
for bin in anvil cast chisel forge; do \
5252
cp $(CARGO_TARGET_DIR)/x86_64-unknown-linux-gnu/$(PROFILE)/$$bin $(BIN_DIR)/amd64/; \
5353
done
5454

55-
FEATURES="aws-kms gcp-kms cli asm-keccak" $(MAKE) build-aarch64-unknown-linux-gnu
55+
FEATURES="aws-kms gcp-kms cli asm-keccak js-tracer" $(MAKE) build-aarch64-unknown-linux-gnu
5656
mkdir -p $(BIN_DIR)/arm64
5757
for bin in anvil cast chisel forge; do \
5858
cp $(CARGO_TARGET_DIR)/aarch64-unknown-linux-gnu/$(PROFILE)/$$bin $(BIN_DIR)/arm64/; \

0 commit comments

Comments
 (0)