From d221d6fe20759765bbecd25ec7dc28d8b9e9af71 Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Nov 05 2024 10:26:10 +0000 Subject: [PATCH 1/2] Add the check_for_arches_ng job in dhall --- diff --git a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall index cd6a042..0f861a9 100644 --- a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall +++ b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall @@ -114,6 +114,15 @@ let check_for_arches = , nodeset = Some default_nodeset } +let check_for_arches_ng = + Zuul.Job::{ + , name = "${job-prefix}check-for-arches-ng" + , description = Some "Check the packages needs arches builds" + , branches = Some Branches.allText + , run = Some "playbooks/rpm/check-for-arches-ng.yaml" + , nodeset = Some default_nodeset + } + let clean_stalled_koji_tasks = Zuul.Job::{ , name = "${job-prefix}clean-stalled-koji-tasks" @@ -352,6 +361,7 @@ let Jobs = , check_for_sti_tests , check_for_fmf_tests , check_for_arches + , check_for_arches_ng , common_koji_rpm_build , check_for_eln , eln_rpm_scratch_build diff --git a/FZCI.dhall/fedora-zuul-jobs/templates.dhall b/FZCI.dhall/fedora-zuul-jobs/templates.dhall index 969b30e..2b80568 100644 --- a/FZCI.dhall/fedora-zuul-jobs/templates.dhall +++ b/FZCI.dhall/fedora-zuul-jobs/templates.dhall @@ -30,8 +30,9 @@ let build = Zuul.Project.PipelineConfig::{ , jobs = [ Zuul.Job.Name "check-for-arches" - , Zuul.Job.Name "check-for-eln" - , Zuul.Job.Name "eln-rpm-scratch-build" + , Zuul.Job.Name "check-for-arches-ng" + , Zuul.Job.Name "check-for-eln" + , Zuul.Job.Name "eln-rpm-scratch-build" ] # createSBJobsForArches } From b3f98aaf3211dae0bd961f6751ba39c21b04c37e Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Nov 05 2024 10:33:58 +0000 Subject: [PATCH 2/2] Set voting False for check-for-arches-ng job --- diff --git a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall index 0f861a9..9048e2a 100644 --- a/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall +++ b/FZCI.dhall/fedora-zuul-jobs-config/jobs.dhall @@ -121,6 +121,7 @@ let check_for_arches_ng = , branches = Some Branches.allText , run = Some "playbooks/rpm/check-for-arches-ng.yaml" , nodeset = Some default_nodeset + , voting = Some False } let clean_stalled_koji_tasks =