summaryrefslogtreecommitdiffstats
path: root/job-cfg/chroot-installation.yaml.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-04-25 14:26:13 +0200
committerHolger Levsen <holger@layer-acht.org>2017-04-25 14:26:13 +0200
commit585496642ce34572d31b21487574743211153122 (patch)
tree5bc152c505b758f8fa5950197946928dd00e0c7d /job-cfg/chroot-installation.yaml.py
parent0834ad9f50a8eaf139c7ba52c658380a4c5291b5 (diff)
downloadjenkins.debian.net-585496642ce34572d31b21487574743211153122.tar.xz
chroot-installation: also test parl-desktop* packages in sid and stretch
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg/chroot-installation.yaml.py')
-rwxr-xr-xjob-cfg/chroot-installation.yaml.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py
index 47196071..ce0a3915 100755
--- a/job-cfg/chroot-installation.yaml.py
+++ b/job-cfg/chroot-installation.yaml.py
@@ -87,6 +87,10 @@ all_targets = [
'education-thin-client-server',
'education-roaming-workstation',
'education-workstation',
+ 'parl-desktop',
+ 'parl-desktop-eu',
+ 'parl-desktop-strict',
+ 'parl-desktop-world',
]
#
@@ -105,8 +109,8 @@ def is_target_in_distro(distro, target):
# education-thin-client-server is obsolete since stretch…
elif distro in ('sid', 'buster') and target == 'education-thin-client-server':
return False
- # education-lang-* packages only exist since stretch
- elif distro in ('wheezy', 'jessie') and target[:15] == 'education-lang-':
+ # education-lang-* and parl-desktop* packages only exist since stretch
+ elif distro in ('wheezy', 'jessie') and (target[:15] == 'education-lang-' or target[:12] == 'parl-desktop'):
return False
return True
@@ -161,7 +165,9 @@ spoken_names = {
'debconf-video': 'all packages relevant for the DebConf videoteam',
}
def get_spoken_name(target):
- if target[:10] == 'education-':
+ if target[:12] == 'parl-desktop':
+ return 'the Debian Parl metapackage '+target
+ elif target[:13] == 'education-':
return 'the Debian Edu metapackage '+target
elif target in spoken_names:
return spoken_names[target]