From bb9f5402b33be4cb48700541ad2bef433eafee5e Mon Sep 17 00:00:00 2001 From: Weiping Cai Date: Thu, 4 Mar 2021 09:59:43 +0800 Subject: [PATCH] fix arm64 build failed and block our release pipeline Signed-off-by: Weiping Cai --- .github/workflows/release.yml | 14 -------------- Makefile | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c04a1d8a8..c97dc3328 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,20 +58,6 @@ jobs: asset_path: ./_bin/vela-linux-amd64.zip asset_name: vela-${{ steps.get_version.outputs.VERSION }}-linux-amd64.zip asset_content_type: binary/octet-stream - - name: Upload Linux arm64 tar.gz - uses: actions/upload-release-asset@v1.0.2 - with: - upload_url: ${{ steps.get_release.outputs.upload_url }} - asset_path: ./_bin/vela-linux-arm64.tar.gz - asset_name: vela-${{ steps.get_version.outputs.VERSION }}-linux-arm64.tar.gz - asset_content_type: binary/octet-stream - - name: Upload Linux arm64 zip - uses: actions/upload-release-asset@v1.0.2 - with: - upload_url: ${{ steps.get_release.outputs.upload_url }} - asset_path: ./_bin/vela-linux-arm64.zip - asset_name: vela-${{ steps.get_version.outputs.VERSION }}-linux-arm64.zip - asset_content_type: binary/octet-stream - name: Upload MacOS tar.gz uses: actions/upload-release-asset@v1.0.2 with: diff --git a/Makefile b/Makefile index 240d9e716..9e13491cc 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ VELA_GITVERSION_VAR := github.com/oam-dev/kubevela/version.GitRevision LDFLAGS ?= "-X $(VELA_VERSION_VAR)=$(VELA_VERSION) -X $(VELA_GITVERSION_VAR)=$(GIT_COMMIT)" GOX = go run github.com/mitchellh/gox -TARGETS := darwin/amd64 linux/amd64 windows/amd64 linux/arm64 +TARGETS := darwin/amd64 linux/amd64 windows/amd64 DIST_DIRS := find * -type d -exec TIME_LONG = `date +%Y-%m-%d' '%H:%M:%S`