Skip to content

Commit e566877

Browse files
committed
fix(build): set wasm lib dependencies for release targets
Signed-off-by: Artur Troian <[email protected]>
1 parent a6228c3 commit e566877

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

make/releasing.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ build:
4141
$(GO_BUILD) -a $(BUILD_FLAGS) ./...
4242

4343
.PHONY: $(AKASH)
44-
$(AKASH):
44+
$(AKASH): wasmvm-libs
4545
$(GO_BUILD) -v -o $@ $(BUILD_FLAGS) ./cmd/akash
4646

4747
.PHONY: akash
@@ -61,7 +61,7 @@ image-minikube:
6161
eval $$(minikube docker-env) && docker-image
6262

6363
.PHONY: test-bins
64-
test-bins:
64+
test-bins: wasmvm-libs
6565
docker run \
6666
--rm \
6767
-e MOD="$(GOMOD)" \
@@ -83,7 +83,7 @@ test-bins:
8383
--snapshot
8484

8585
.PHONY: docker-image
86-
docker-image:
86+
docker-image: wasmvm-libs
8787
docker run \
8888
--rm \
8989
-e MOD="$(GOMOD)" \
@@ -110,7 +110,7 @@ gen-changelog: $(GIT_CHGLOG)
110110
./script/genchangelog.sh "$(RELEASE_TAG)" .cache/changelog.md
111111

112112
.PHONY: release
113-
release: gen-changelog
113+
release: wasmvm-libs gen-changelog
114114
docker run \
115115
--rm \
116116
-e MOD="$(GOMOD)" \

0 commit comments

Comments
 (0)