diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-03 15:24:19 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-03 15:24:19 +0100 |
commit | a98541cef4a46cc7bda9bfa30473b86d9a1c6bc5 (patch) | |
tree | f5a8414ae639b4bf4a3c7732c6d2f7b9f8087050 /job-cfg | |
parent | a5695fb1ded4595fcbd7d59338298cc4737f341f (diff) | |
download | jenkins.debian.net-a98541cef4a46cc7bda9bfa30473b86d9a1c6bc5.tar.xz |
edu chroot tests: add jobs for new package, education-ltsp-server
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index ec4a5109..f429b46c 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -64,6 +64,7 @@ all_targets = [ 'education-language', 'education-laptop', 'education-logic-games', + 'education-ltsp-server', 'education-main-server', 'education-mathematics', 'education-misc', @@ -85,7 +86,13 @@ def is_target_in_distro(distro, target): if distro == 'wheezy' and ( target == 'education-desktop-mate' or target == 'cinnamon' or target == 'qt5' or target == '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... - if (distro == 'sid' or distro == 'jessie' or distro == 'stretch') and ( target == 'education-desktop-sugar' ): + elif (distro == 'sid' or distro == 'jessie' or distro == 'stretch') and ( target == 'education-desktop-sugar' ): + return False + # education-ltsp-server has just been introduced in sid… + elif (distro == 'wheezy' or distro == 'jessie' or distro == 'stretch') and ( target == 'education-ltsp-server' ): + return False + # education-thin-client-server will become obsolete in stretch… + elif (distro == 'sid') and ( target == 'education-thin-client-server' ): return False return True |