From 514f7d5fc2ce16126003b0ab5641236b82c9bbc5 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 29 Oct 2019 09:44:08 -0400 Subject: [PATCH] bodhi-pungi: only run multi-arch SB on f31+ This is a fixup for d7713e6 where mulit-arch was enabled. --- roles/bodhi2/backend/templates/pungi.rpm.conf.j2 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 b/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 index 640ddf058a..b83c9f4f5a 100644 --- a/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 +++ b/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 @@ -193,8 +193,13 @@ ostree = { "ostree_ref": "fedora/[[ release.version_int ]]/${basearch}/testing/silverblue", [% endif %] "tag_ref": False, - "arches": ["x86_64", "ppc64le", "aarch64" ], - "failable": ["x86_64", "ppc64le", "aarch64" ] + [% if release.version_int <= 30 %] + "arches": ["x86_64"], + "failable": ["x86_64"] + [% else %] + "arches": ["x86_64", "ppc64le", "aarch64" ], + "failable": ["x86_64", "ppc64le", "aarch64" ] + [% endif %] }, ] }