summaryrefslogtreecommitdiffstats
path: root/job-cfg
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-09-09 12:55:50 +0200
committerHolger Levsen <holger@layer-acht.org>2017-09-09 12:55:50 +0200
commitfdc5ca4a37257e1af78325a5cf80f8cd1255bd73 (patch)
tree7585a8d0bdc87266c75827a0094b6ab78d9bf111 /job-cfg
parent8fa19d17a929f2eef84008e339eb57dc6378c81d (diff)
downloadjenkins.debian.net-fdc5ca4a37257e1af78325a5cf80f8cd1255bd73.tar.xz
chroot-installs: stop testing education-services in buster and sid as the package was dropped
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-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 d99c734f..2616f750 100755
--- a/job-cfg/chroot-installation.yaml.py
+++ b/job-cfg/chroot-installation.yaml.py
@@ -108,6 +108,9 @@ def is_target_in_distro(distro, target):
# education-thin-client-server is obsolete since stretch…
elif distro in ('sid', 'buster', 'stretch') and target == 'education-thin-client-server':
return False
+ # education-services is obsolete since buster…
+ elif distro in ('sid', 'buster') and target == 'education-services':
+ return False
# education-lang-*, parl-desktop* and design-desktop* packages only exist since stretch
elif distro in ('jessie') and (target[:15] == 'education-lang-' or target[:12] == 'parl-desktop' or target[:14] == 'design-desktop'):
return False