From b1bac7cc108730cee79d96dd270807e3507f744f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 21 Jun 2021 13:33:50 -0700 Subject: [PATCH] Gate on openQA update test results This adds a policy to gate podman updates for stable releases on the openQA podman and podman_client tests, which will be run on podman updates as of today. Unfortunately there is no way to express "all versions except Rawhide" so we have to just list the versions explicitly; this will need to be updated when releases branch and go EOL. Signed-off-by: Adam Williamson --- gating.yaml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/gating.yaml b/gating.yaml index c8a218f..09431da 100644 --- a/gating.yaml +++ b/gating.yaml @@ -1,14 +1,20 @@ --- !Policy product_versions: - fedora-* -decision_context: bodhi_update_push_stable +decision_contexts: + - bodhi_update_push_stable + - bodhi_update_push_testing subject_type: koji_build rules: - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} --- !Policy product_versions: - - fedora-* -decision_context: bodhi_update_push_testing -subject_type: koji_build + - fedora-33 + - fedora-34 +decision_contexts: + - bodhi_update_push_stable + - bodhi_update_push_testing +subject_type: bodhi_update rules: - - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} + - !PassingTestCaseRule {test_case_name: update.podman} + - !PassingTestCaseRule {test_case_name: update.podman_client}