From 688ddb4720299dd57ee24966950485319d3fb2e2 Mon Sep 17 00:00:00 2001 From: Matt Moore Date: Wed, 17 Feb 2021 07:05:10 -0800 Subject: [PATCH 1/2] Pin golang to avoid breakages. The golang 1.16 release broke this Dockerfile. --- test/gohelloworld/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gohelloworld/Dockerfile b/test/gohelloworld/Dockerfile index f620240d772..ce24e0ad40e 100644 --- a/test/gohelloworld/Dockerfile +++ b/test/gohelloworld/Dockerfile @@ -1,4 +1,4 @@ -FROM golang +FROM golang:1.15 # Copy the local package files to the container's workspace. COPY . /go/src/github.com/tektoncd/pipeline/ From 638a107e53b74cb1a1f927c3821fa726f2e307f7 Mon Sep 17 00:00:00 2001 From: Matt Moore Date: Wed, 17 Feb 2021 14:16:36 -0800 Subject: [PATCH 2/2] Add t.Skip --- test/helm_task_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/helm_task_test.go b/test/helm_task_test.go index 4d1b98de6c5..9cdc0d4329c 100644 --- a/test/helm_task_test.go +++ b/test/helm_task_test.go @@ -42,6 +42,7 @@ var ( // TestHelmDeployPipelineRun is an integration test that will verify a pipeline build an image // and then using helm to deploy it func TestHelmDeployPipelineRun(t *testing.T) { + t.Skip("This test is broken following the golang 1.16 release, see: https://github.com/tektoncd/pipeline/pull/3766") repo := ensureDockerRepo(t) ctx := context.Background() ctx, cancel := context.WithCancel(ctx)