diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-07 14:33:38 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-07 14:33:38 +0200 |
commit | 754455e203e073781ed7c20b3c480a69f79d431f (patch) | |
tree | fefb88734ffe72624961a25ab525f4b3d28ba15a /job-cfg | |
parent | de3d0bf5a6c2a29300d7130c7dbfc8d447b4e18c (diff) | |
download | jenkins.debian.net-754455e203e073781ed7c20b3c480a69f79d431f.tar.xz |
chroot-installation: also test education-roaming-workstation at all and education-ltsp-server in stretch
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index ac94c248..15d1291f 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -75,6 +75,7 @@ all_targets = [ 'education-standalone', 'education-thin-client', 'education-thin-client-server', + 'education-roaming-workstation', 'education-workstation', ] @@ -85,14 +86,14 @@ def is_target_in_distro(distro, target): # qt5, education-desktop-mate and cinnamon weren't in wheezy. debconf-video is not interested in wheezy anymore neither if distro == 'wheezy' and target in ('education-desktop-mate', 'cinnamon', 'qt5', 'debconf-video'): return False - # sugar has been removed from jessie and thus education-desktop-sugar has been removed from jessie and sid - it's also not yet available in stretch again... + # sugar has been removed from jessie and thus education-desktop-sugar has been removed from jessie and sid... elif distro in ('sid', 'jessie', 'stretch') and target == 'education-desktop-sugar': return False - # education-ltsp-server has just been introduced in sid… - elif distro in ('wheezy', 'jessie', 'stretch') and target == 'education-ltsp-server': + # education-ltsp-server and education-roaming-workstation are only availble since stretch… + elif distro in ('wheezy', 'jessie') and target in ('education-ltsp-server', 'education-roaming-workstation'): return False - # education-thin-client-server will become obsolete in stretch… - elif distro == 'sid' and target == 'education-thin-client-server': + # education-thin-client-server is obsolete since stretch… + elif distro in ('sid', 'buster') and target == 'education-thin-client-server': return False return True |