From 4121669d746bdc77c505f8ae6dcd2cb9f7f7b815 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Aug 28 2025 08:11:45 +0000 Subject: [PATCH 1/2] Drop running STI tests on F43+, epel and ELN --- diff --git a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall index 003b749..3dfe487 100644 --- a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall +++ b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall @@ -67,7 +67,7 @@ let check_for_sti_tests = Zuul.Job::{ , name = "${job-prefix}check-for-sti-tests" , description = Some "Check the project has a tests/tests.yml" - , branches = Some Branches.allText + , branches = Some ["f41", "f42"] , run = Some "playbooks/rpm/check-for-sti-tests.yaml" , nodeset = Some executor_nodeset } From c8e11d38e8713e0bda26b0048362346a722ca504 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Aug 29 2025 11:40:29 +0000 Subject: [PATCH 2/2] Remove the rpm-sti-tests as well --- diff --git a/FZCI.dhall/Branches.dhall b/FZCI.dhall/Branches.dhall index 6f288d8..26a5cca 100644 --- a/FZCI.dhall/Branches.dhall +++ b/FZCI.dhall/Branches.dhall @@ -36,12 +36,19 @@ let all = , Union.Epel9Next ] +let STIBranches = + [ Union.F42 + , Union.F41 + ] + let isRawhide = λ(branch : Union) → merge (eq_def ⫽ { Rawhide = True }) branch in { Type = Union , default = Union.Rawhide , all , allText = Prelude.List.map Union Text show all # [ "main" ] + , STIBranches + , STIBranchesText = Prelude.List.map Union Text show STIBranches , show , zuulBranch = λ(branch : Union) → diff --git a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall index 3dfe487..7f8ff00 100644 --- a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall +++ b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall @@ -67,7 +67,7 @@ let check_for_sti_tests = Zuul.Job::{ , name = "${job-prefix}check-for-sti-tests" , description = Some "Check the project has a tests/tests.yml" - , branches = Some ["f41", "f42"] + , branches = Some Branches.STIBranchesText , run = Some "playbooks/rpm/check-for-sti-tests.yaml" , nodeset = Some executor_nodeset } @@ -282,7 +282,7 @@ let generateSTITestsJobs = Branches.Type Zuul.Job.Type generateSTITestsJob - Branches.all + Branches.STIBranches let generateTMTTestsJob = λ(branch : Branches.Type) →