summaryrefslogtreecommitdiffstats
path: root/job-cfg/chroot-installation.yaml.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-04-15 12:16:42 +0200
committerHolger Levsen <holger@layer-acht.org>2015-04-15 12:16:42 +0200
commit74ad08136faa03043e19e732b2629350fce25781 (patch)
tree478214a703db7168cc131ef5475f7f1585e5df45 /job-cfg/chroot-installation.yaml.py
parent5c0675f925d2227068868fb86c5a6d1cc84de243 (diff)
downloadjenkins.debian.net-74ad08136faa03043e19e732b2629350fce25781.tar.xz
remove education-desktop-sugar related jobs from sid and jessie (see #782504)
Diffstat (limited to 'job-cfg/chroot-installation.yaml.py')
-rwxr-xr-xjob-cfg/chroot-installation.yaml.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py
index 6c5b49a4..87b62531 100755
--- a/job-cfg/chroot-installation.yaml.py
+++ b/job-cfg/chroot-installation.yaml.py
@@ -77,6 +77,9 @@ def get_targets_in_distro(distro, targets):
# qt5, education-desktop-mate and cinnamon weren't in wheezy
if distro == 'wheezy' and ( target == 'education-desktop-mate' or target == 'cinnamon' or target == 'qt5' ):
continue
+ # sugar has been removed from jessie and thus education-desktop-sugar has been removed from jessie and sid
+ if (distro == 'sid' or distro == 'jessie') and ( target == 'education-desktop-sugar' ):
+ continue
targets_in_distro.append(target)
return targets_in_distro