From ecae6fb851fd8a266bdea873b78eb02a7cc7f0fd Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 3 Oct 2025 13:42:07 -0700 Subject: [PATCH] Add FreeIPA bump rebuilds to workarounds to fix upgrade tests FreeIPA team bumped the F41 NVR past the F42 one, so now upgrade tests from F41 to F42 are broken. To workaround this we need bumped rebuilds for F42, F43 and F44, because if only do F42 the problem moves to F42->F43 upgrades, etc. Signed-off-by: Adam Williamson --- lib/utils.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index 37d29797..c332be66 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -498,9 +498,9 @@ sub get_workarounds { my $version = shift || get_var("VERSION"); my %workarounds = ( "41" => [], - "42" => [], - "43" => [], - "44" => [], + "42" => ["137736267"], + "43" => ["137736467"], + "44" => ["137736545"], "eln" => [], ); my $advortasks = $workarounds{$version};