From 51a8630decc56079352cb865ef8076e37fc328d4 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 9 Apr 2020 10:54:49 +0200 Subject: [PATCH] monitor-gating: specify the fedpkg command to use to clean up side-tags Signed-off-by: Pierre-Yves Chibon --- roles/openshift-apps/monitor-gating/templates/runner.cfg | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/openshift-apps/monitor-gating/templates/runner.cfg b/roles/openshift-apps/monitor-gating/templates/runner.cfg index 0b4940e1e6..1916d66215 100644 --- a/roles/openshift-apps/monitor-gating/templates/runner.cfg +++ b/roles/openshift-apps/monitor-gating/templates/runner.cfg @@ -21,3 +21,11 @@ workflow_single_gating_args = "--conf /opt/config/monitor_gating.cfg --auto-upda # CLI arguments to give to the script testing the multi builds gating workflow workflow_multi_gating_args = "--conf /opt/config/monitor_gating.cfg" + + +# The fedpkg command to call to clean up the dangling side-tags +{% if env == 'staging' %} +fedpkg = "fedpkg-stage" +{% else %} +fedpkg = "fedpkg" +{% endif %}