Skip to content

Commit 249dff9

Browse files
Add workaround for suseconnect-ng regression
1 parent ee246ae commit 249dff9

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

schedule/ha/qam/common/ha_rolling_update_node01.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ schedule:
66
- boot/boot_to_desktop
77
- console/suseconnect_scc
88
- update/zypper_up
9+
- ha/downgrade_suseconnect_ng
910
- console/console_reboot
1011
- ha/wait_barriers
1112
- console/system_prepare

schedule/ha/qam/common/ha_rolling_update_node02.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ schedule:
66
- boot/boot_to_desktop
77
- console/suseconnect_scc
88
- update/zypper_up
9+
- ha/downgrade_suseconnect_ng
910
- console/console_reboot
1011
- ha/wait_barriers
1112
- console/system_prepare
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# SUSE's openQA tests
2+
#
3+
# Copyright 2026 SUSE LLC
4+
# SPDX-License-Identifier: FSFAP
5+
6+
# Summary: Workaround to downgrade suseconnect-ng on 15-SP5 due to regression
7+
# Maintainer: : QE-SAP <qe-sap@suse.de>
8+
9+
use base "y2_module_consoletest";
10+
use testapi;
11+
use utils;
12+
use version_utils;
13+
14+
sub run {
15+
select_console 'root-console';
16+
17+
# Workaround for <ALVAROS TICKET HERE>
18+
# 1.13.0 is the last known good version of suseconnect-ng
19+
if (is_sle('=15-SP5')) {
20+
record_soft_failure('bsc#BLA - Downgrading suseconnect-ng due to regression');
21+
zypper_call('in --oldpackage --allow-downgrade suseconnect-ng-1.13.0');
22+
}
23+
}
24+
25+
sub test_flags {
26+
return {milestone => 1, fatal => 1};
27+
}
28+
29+
1;

0 commit comments

Comments
 (0)