From ab4b0a60ad31acebc93a9ca8b1312ad670377d95 Mon Sep 17 00:00:00 2001 From: Rick Ducott Date: Fri, 8 Mar 2019 16:12:42 -0500 Subject: [PATCH] Fix make (#22) * Refresh with the latest * git push * space * Revert change to gloo for now * Update CLI install * Fix flagutil * Finish * Add fixes for #20, #21 * Fix filename * Fix panic * Fix uninstall, error handling * Cleanup * final updates * fmt imports * Fix sqoop build --- Makefile | 3 +++ cloudbuild.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17d15a7..8b5b03a 100644 --- a/Makefile +++ b/Makefile @@ -155,6 +155,9 @@ sqoopctl-windows-amd64: $(OUTPUT_DIR)/sqoopctl-windows-amd64.exe # Release #---------------------------------------------------------------------------------- +.PHONY: build-cli +build-cli: sqoopctl-linux-amd64 sqoopctl-darwin-amd64 sqoopctl-windows-amd64 + .PHONY: upload-github-release-assets upload-github-release-assets: go run ci/upload_github_release_assets.go diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 78f5959..cafd865 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -76,7 +76,7 @@ steps: waitFor: ['docker-login'] id: 'compile' - name: 'gcr.io/$PROJECT_ID/go-make' - args: ['docker-push', 'manifest', 'upload-github-release-assets', 'push-docs'] + args: ['docker-push', 'manifest', 'build-cli', 'upload-github-release-assets', 'push-docs'] env: - 'TAGGED_VERSION=$TAG_NAME' - 'PROJECT_ROOT=github.com/solo-io/sqoop'