diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-21 00:08:12 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-21 00:08:12 +0100 |
commit | 2a177050fcef308d6708fac53e6d940133d514b0 (patch) | |
tree | a73dc7a50785541fbf5a74604be55ecd78cc95d2 /job-cfg | |
parent | 37c0565800b0307be4a75b72739a1718ced5f43c (diff) | |
download | jenkins.debian.net-2a177050fcef308d6708fac53e6d940133d514b0.tar.xz |
chroot-installation: remove debconf-video wheezy jobs
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index 3373301b..ec4a5109 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -81,8 +81,8 @@ all_targets = [ # not all packages are available in all distros # def is_target_in_distro(distro, target): - # qt5, education-desktop-mate and cinnamon weren't in wheezy - if distro == 'wheezy' and ( target == 'education-desktop-mate' or target == 'cinnamon' or target == 'qt5' ): + # qt5, education-desktop-mate and cinnamon weren't in wheezy. debconf-video is not interested in wheezy anymore neither + 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' ): |