From 0215146469f9ff1cebfd8fe16889d79720408bc6 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 20 Jan 2020 18:17:50 +0100 Subject: [PATCH] =?UTF-8?q?Add=20disable=5Fgcp=20build=20tag=20to=20make?= =?UTF-8?q?=20it=20run=20on=20GCP=20=F0=9F=8F=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now that master has the upstream "fix" https://github.com/tektoncd/pipeline/commit/530f0843732f4db6de3597571710c501a923c320, we can use this build tag to disable the GCP credentialprovider and make OpenShift Pipeline work on GCP. Signed-off-by: Vincent Demeester --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b5bc0735b97..5402cee7962 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ REGISTRY_RELEASE_URL=quay.io/openshift-pipeline/tektoncd-pipeline # Install core images install: installuidwrapper - @env CGO_ENABLED=0 go install $(ALL_IMAGES) + @env CGO_ENABLED=0 go -tags="disable_gcp" install $(ALL_IMAGES) .PHONY: install # Run E2E tests on OpenShift