summaryrefslogtreecommitdiffstats
path: root/job-cfg
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-09-09 13:29:52 +0200
committerHolger Levsen <holger@layer-acht.org>2017-09-09 13:29:52 +0200
commit7ad8be1a1e8db83ca89b5a7b382c7a6aa5c4dc3c (patch)
treed96d0822fb889042d35bdb6a2fcb8f5be2d435b6 /job-cfg
parent0f3a5c04d4234ea736eda11e6792403419a29c17 (diff)
downloadjenkins.debian.net-7ad8be1a1e8db83ca89b5a7b382c7a6aa5c4dc3c.tar.xz
chroot-installs: lxqt is only available since stretch
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 35d3e295..ac60c269 100755
--- a/job-cfg/chroot-installation.yaml.py
+++ b/job-cfg/chroot-installation.yaml.py
@@ -112,6 +112,9 @@ def is_target_in_distro(distro, target):
# education-services is obsolete since buster…
elif distro in ('sid', 'buster') and target == 'education-services':
return False
+ # lxqt is only available since stretch
+ elif distro in ('jessie') and target == 'lxqt':
+ 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