From 9349d8e351a5302091d4455cc2bc99f93facccb7 Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Feb 07 2024 16:16:31 +0000 Subject: Remove distro build - for epel8 and epel9 --- diff --git a/FZCI.dhall/fedora-zuul-jobs/jobs.dhall b/FZCI.dhall/fedora-zuul-jobs/jobs.dhall index 1a9f217..3b96c51 100644 --- a/FZCI.dhall/fedora-zuul-jobs/jobs.dhall +++ b/FZCI.dhall/fedora-zuul-jobs/jobs.dhall @@ -55,18 +55,14 @@ let createRpmInstallTestJob , run = Some "playbooks/rpm/rpm-install-test.yaml" , branches = Branches.zuulBranch branch , nodeset = Some (getNodesetByBranch branch) - , vars = Some (createJobVars (Branches.kojirepos branch)) } let job = - if Branches.isEpel8 branch - then job ⫽ { pre-run = Some [ "playbooks/epel8/install.yaml" ] } - else job - - let job = - if Branches.isEpel9 branch + if Branches.isEpel9 branch || Branches.isEpel8 branch then job ⫽ { pre-run = Some [ "playbooks/epel8/install.yaml" ] } - else job + else job + ⫽ { vars = Some (createJobVars (Branches.kojirepos branch)) + } in job