From 0780948ab2b1777818d0c50af21ea3e624fe7add Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Mon, 26 Sep 2016 13:36:56 +0200 Subject: [PATCH] openqa-maintenance: Add 42.2 settings --- openqa-maintenance.py | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/openqa-maintenance.py b/openqa-maintenance.py index 297ee7e1..ead56fd3 100755 --- a/openqa-maintenance.py +++ b/openqa-maintenance.py @@ -198,8 +198,6 @@ class openSUSEUpdate(Update): settings['ZYPPER_ADD_REPOS'] = settings['INCIDENT_REPO'] settings['ADDONURL'] = settings['INCIDENT_REPO'] - settings['ISO'] = 'openSUSE-Leap-42.1-DVD-x86_64.iso' - settings['WITH_MAIN_REPO'] = 1 settings['WITH_UPDATE_REPO'] = 1 @@ -301,6 +299,29 @@ TARGET_REPO_SETTINGS = { ], 'test': 'kde' }, + 'openSUSE:Leap:42.2:Update': { + 'repos': [ + 'http://download.opensuse.org/update/leap/42.2-test/', + 'http://download.opensuse.org/update/leap/42.2/oss/', + 'http://download.opensuse.org/update/leap/42.2/non-oss/', + ], + 'settings': [ + { + 'DISTRI': 'opensuse', + 'VERSION': '42.2', + 'FLAVOR': 'UpdateTest', + 'ARCH': 'x86_64', + }, + { + 'DISTRI': 'opensuse', + 'VERSION': '42.2', + 'FLAVOR': 'Updates', + 'ARCH': 'x86_64', + }, + ], + 'test': 'kde' + }, + } } @@ -382,6 +403,17 @@ PROJECT_OPENQA_SETTINGS = { 'VERSION': '42.1', 'FLAVOR': 'Maintenance', 'ARCH': 'x86_64', + 'ISO': 'openSUSE-Leap-42.1-DVD-x86_64.iso', + }), + ], + 'openSUSE:Leap:42.2:Update': [ + openSUSEUpdate( + { + 'DISTRI': 'opensuse', + 'VERSION': '42.2', + 'FLAVOR': 'Maintenance', + 'ARCH': 'x86_64', + 'ISO': 'openSUSE-Leap-42.2-DVD-x86_64.iso', }), ], }