diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-14 15:41:28 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-14 15:41:28 +0200 |
commit | ce967f0dbc81254f6c426cf77332c34ab9f4d58b (patch) | |
tree | e0a23cd0a3ef485b4b8dc7116cde8a12854384cc /job-cfg | |
parent | cee999d4c6e7465195af1f9c1d8429827ed30b1e (diff) | |
download | jenkins.debian.net-ce967f0dbc81254f6c426cf77332c34ab9f4d58b.tar.xz |
simplify lintian job definition
Diffstat (limited to 'job-cfg')
-rw-r--r-- | job-cfg/lintian-tests.yaml | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/job-cfg/lintian-tests.yaml b/job-cfg/lintian-tests.yaml index 4d9360dd..354c5ace 100644 --- a/job-cfg/lintian-tests.yaml +++ b/job-cfg/lintian-tests.yaml @@ -53,17 +53,13 @@ - project: name: lintian-tests + distro: + - sid + - jessie + - wheezy jobs: - - '{name}_sid': - my_distro: 'sid' + - '{name}_{distro}': + my_distro: '{distro}' my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on sid.' - - '{name}_jessie': - my_distro: 'jessie' - my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on jessie.' - - '{name}_wheezy': - my_distro: 'wheezy+backports' - my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on wheezy.' + my_description: 'Debian/Lintian testsuite running on {distro}.' |