diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-14 16:13:13 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-14 16:13:13 +0200 |
commit | c3e29ffc5dd8985e51e3ebafb7269a8e771c5124 (patch) | |
tree | 7e5f7e7d0adee4eb34b0aff52ec12fdd166250b0 | |
parent | 3545aba1c63ac712c521c58edc4f7b05b16697f7 (diff) | |
download | jenkins.debian.net-c3e29ffc5dd8985e51e3ebafb7269a8e771c5124.tar.xz |
Revert "simplify lintian job definition"
This reverts commit ce967f0dbc81254f6c426cf77332c34ab9f4d58b.
-rw-r--r-- | job-cfg/lintian-tests.yaml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/job-cfg/lintian-tests.yaml b/job-cfg/lintian-tests.yaml index 354c5ace..4d9360dd 100644 --- a/job-cfg/lintian-tests.yaml +++ b/job-cfg/lintian-tests.yaml @@ -53,13 +53,17 @@ - project: name: lintian-tests - distro: - - sid - - jessie - - wheezy jobs: - - '{name}_{distro}': - my_distro: '{distro}' + - '{name}_sid': + my_distro: 'sid' my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on {distro}.' + 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.' |