diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-08-30 17:22:34 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-08-30 17:22:34 +0200 |
commit | 7a5c9326c8fae2b52b00339b279fdb91e5d0310a (patch) | |
tree | 26eb4fa5222cc4ab2bec8bfa50ef1fcd85e56fc7 /job-cfg | |
parent | 43c18a50696c5c02834cfbf424622dc663ae9838 (diff) | |
download | jenkins.debian.net-7a5c9326c8fae2b52b00339b279fdb91e5d0310a.tar.xz |
chroot-install: also test new metapackages education-desktop-lxqt, education-primaryschool and education-video packages (since buster) and make sure education-thin-client-server is not tested on stretch anymore
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index cbdedebf..500039f8 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -53,6 +53,7 @@ all_targets = [ 'education-desktop-gnome', 'education-desktop-kde', 'education-desktop-lxde', + 'education-desktop-lxqt', 'education-desktop-mate', 'education-desktop-other', 'education-desktop-xfce', @@ -80,11 +81,13 @@ all_targets = [ 'education-music', 'education-networked', 'education-physics', + 'education-primaryschool', 'education-services', 'education-standalone', 'education-thin-client', 'education-thin-client-server', 'education-roaming-workstation', + 'education-video', 'education-workstation', 'parl-desktop-eu', 'parl-desktop-strict', @@ -103,11 +106,14 @@ def is_target_in_distro(distro, target): if distro in ('jessie') and target in ('education-ltsp-server', 'education-roaming-workstation'): return False # education-thin-client-server is obsolete since stretch… - elif distro in ('sid', 'buster') and target == 'education-thin-client-server': + elif distro in ('sid', 'buster', 'stretch') and target == 'education-thin-client-server': return False # education-lang-*, parl-desktop* and design-desktop* packages only exist since stretch elif distro in ('jessie') and (target[:15] == 'education-lang-' or target[:12] == 'parl-desktop' or target[:14] == 'design-desktop'): return False + # education-desktop-lxqt, education-primaryschool and education-video packages only exist since buster + elif distro in ('jessie', 'stretch') and target in ('education-desktop-lxqt', 'education-primaryschool', 'education-video'): + return False return True # |