diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-04-27 18:19:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-27 18:19:57 +0200 |
commit | df71f3ab3cf27b4bfaee5b112e65d74013ad3a6d (patch) | |
tree | 36abb2e05254aea77d2d24d25055da9fcbbb9ada /job-cfg | |
parent | 98409d310595d74bd02e74fd19a17b8f01116cdc (diff) | |
download | jenkins.debian.net-df71f3ab3cf27b4bfaee5b112e65d74013ad3a6d.tar.xz |
chroot-installation: remove education-desktop-sugar jobs in stretch as the package hasn't migrated back yet
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 e62ecb2e..c19c7488 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -80,8 +80,8 @@ 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' ): + # 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' ): continue targets_in_distro.append(target) return targets_in_distro |