From 95b8a644273d5e6f3349e7baf113645f56885677 Mon Sep 17 00:00:00 2001 From: 0g-wh Date: Mon, 5 Aug 2024 16:03:29 +0800 Subject: [PATCH] fix action --- .github/workflows/upload-release-assets.yml | 4 +++- Makefile | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/upload-release-assets.yml b/.github/workflows/upload-release-assets.yml index 975b1aa7..361f29d1 100644 --- a/.github/workflows/upload-release-assets.yml +++ b/.github/workflows/upload-release-assets.yml @@ -7,12 +7,14 @@ on: jobs: build: runs-on: ubuntu-latest + env: + LINK_STATICALLY: true steps: - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version: '1.21' - name: Build run: make build - name: Rename file diff --git a/Makefile b/Makefile index 5ffcc160..3410f669 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,6 @@ DOCKER_IMAGE_NAME := 0glabs/$(PROJECT_NAME) GO_BIN ?= go ARCH := $(shell uname -m) WASMVM_VERSION := $(shell $(GO_BIN) list -m github.com/CosmWasm/wasmvm | sed 's/.* //') -$(shell wget https://github.com/CosmWasm/wasmvm/releases/download/$(WASMVM_VERSION)/libwasmvm_muslc.$(ARCH).a -O /lib/libwasmvm.$(ARCH).a) -LINK_STATICALLY=true GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD) GIT_COMMIT := $(shell git rev-parse HEAD) @@ -202,6 +200,10 @@ else $(GO_BIN) build -mod=readonly $(BUILD_FLAGS) -o out/$(shell $(GO_BIN) env GOOS)/$(BINARY_NAME) $(MAIN_ENTRY) endif +build-release: go.sum + wget https://github.com/CosmWasm/wasmvm/releases/download/$(WASMVM_VERSION)/libwasmvm_muslc.$(ARCH).a -O libwasmvm.$(ARCH).a + $(GO_BIN) build -mod=readonly $(BUILD_FLAGS) -o out/$(shell $(GO_BIN) env GOOS)/$(BINARY_NAME) $(MAIN_ENTRY) + build-linux: go.sum LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build