From 7b9351588f9814cefc8b03809b7a43085c20ecca Mon Sep 17 00:00:00 2001 From: Simon Baird Date: Wed, 7 Aug 2024 11:12:48 -0400 Subject: [PATCH] Don't verify redhat-appstudio/dance-bootstrap-app Making this patch in the Tekton task to be consistent with https://github.com/redhat-appstudio/tssc-sample-jenkins/pull/4 (There should also be an upstream PR in the build-definitions repo.) As mentioned elsewhere, I'm not sure if this is a good solution, (or if this bug would actually be a real problem in production), but I'm proposing this change as a quick workaround RHTAPBUGS-1284 for to help get testing unblocked. Ref: https://issues.redhat.com/browse/RHTAPBUGS-1284 --- pac/tasks/gather-deploy-images.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pac/tasks/gather-deploy-images.yaml b/pac/tasks/gather-deploy-images.yaml index 7ac989e..ce703db 100644 --- a/pac/tasks/gather-deploy-images.yaml +++ b/pac/tasks/gather-deploy-images.yaml @@ -53,6 +53,12 @@ spec: # don't check images that didn't change between the current revision and the target branch continue fi + + # Workaround for RHTAPBUGS-1284 + if [[ "$image" =~ "quay.io/redhat-appstudio/dance-bootstrap-app" ]]; then + # Don't check the dance-bootstrap-app image + continue + fi fi printf "%s\n" "$image"