From 17271b1c4c3564aeb93b4f2047ed0780589b4022 Mon Sep 17 00:00:00 2001 From: Pavel Sturc Date: Thu, 4 Apr 2024 21:04:11 +0200 Subject: [PATCH] fix: fixed tag of buildah-remote task for MP test (#1109) --- magefiles/magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefiles/magefile.go b/magefiles/magefile.go index acceb0ba3..45107d1b1 100644 --- a/magefiles/magefile.go +++ b/magefiles/magefile.go @@ -593,7 +593,7 @@ func SetupMultiPlatformTests() error { currentBuildahTaskRef = lastBundle.Value.StringVal klog.Infof("Found current task ref %s", currentBuildahTaskRef) //TODO: current use pinned sha? - lastBundle.Value = *tektonapi.NewStructuredValues("quay.io/redhat-appstudio-tekton-catalog/task-buildah-remote:0.1") + lastBundle.Value = *tektonapi.NewStructuredValues("quay.io/redhat-appstudio-tekton-catalog/task-buildah-remote:0.1-ac185e95bbd7a25c1c4acf86995cbaf30eebedc4") lastName.Value = *tektonapi.NewStructuredValues("buildah-remote") t.Params = append(t.Params, tektonapi.Param{Name: "PLATFORM", Value: *tektonapi.NewStructuredValues("$(params.PLATFORM)")}) dockerPipelineObject.Spec.Params = append(dockerPipelineObject.PipelineSpec().Params, tektonapi.ParamSpec{Name: "PLATFORM", Default: tektonapi.NewStructuredValues(platformType)})