Drop workaround updates that have been pushed stable

Except one that's pushed stable but hasn't made repos yet (as the
last F32 nightly compose failed).

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-03-17 08:17:00 -07:00
parent 608209499d
commit d9438e8042
1 changed files with 4 additions and 6 deletions

View File

@ -439,12 +439,10 @@ sub setup_workaround_repo {
assert_script_run "mkdir -p /opt/workarounds_repo"; assert_script_run "mkdir -p /opt/workarounds_repo";
assert_script_run "pushd /opt/workarounds_repo"; assert_script_run "pushd /opt/workarounds_repo";
my %workarounds = ( my %workarounds = (
# disable modules on upgrade (#1767351) "30" => [""],
"30" => ["FEDORA-2020-02ee4b1a1c"], "31" => [""],
# disable modules on upgrade (#1767351) # fix for lmod breaking console output tests
"31" => ["FEDORA-2020-717d521d35"], "32" => ["FEDORA-2020-755d29d4b0"]
# fix for lmod breaking console output tests, f32 backgrounds
"32" => ["FEDORA-2020-755d29d4b0", "FEDORA-2020-ed62604eca"]
); );
# then we'll download each update for our release: # then we'll download each update for our release:
my $advisories = $workarounds{$version}; my $advisories = $workarounds{$version};