diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-09 03:50:25 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-09 03:50:25 +0200 |
commit | 2be348bba602e97b9995dfa9b9803c6fe1a22690 (patch) | |
tree | efc8935bff86b144c46bed1ba31891edd16a83da | |
parent | f733f4d9369193273d13c0eba6e3c3d70b1772a6 (diff) | |
download | jenkins.debian.net-2be348bba602e97b9995dfa9b9803c6fe1a22690.tar.xz |
use release names (wheezy, jessie...) not code names (stable, testing...)
-rwxr-xr-x | bin/chroot-run.sh | 6 | ||||
-rw-r--r-- | job-cfg/lintian-tests.yaml | 24 |
2 files changed, 15 insertions, 15 deletions
diff --git a/bin/chroot-run.sh b/bin/chroot-run.sh index 2251c504..7ca5122c 100755 --- a/bin/chroot-run.sh +++ b/bin/chroot-run.sh @@ -27,9 +27,9 @@ if [ $# -lt 2 ]; then fi DISTRO="$1" -if [ "$DISTRO" == "stable+backports" ] ; then - # FIXME: this works but is a bit too hackish for my liking - DISTRO="stable" +if [ "$DISTRO" == "wheezy+backports" ] ; then + # FIXME: this works but is a bit too hackish for my liking, ie it will break when jessie will be stable.. + DISTRO="wheezy" BACKPORTS="deb $MIRROR ${DISTRO}-backports main" BACKPORTSSRC="deb-src $MIRROR ${DISTRO}-backports main" fi diff --git a/job-cfg/lintian-tests.yaml b/job-cfg/lintian-tests.yaml index d6283f1f..c238bb57 100644 --- a/job-cfg/lintian-tests.yaml +++ b/job-cfg/lintian-tests.yaml @@ -35,36 +35,36 @@ - job-template: defaults: lintian-tests - name: '{name}_stable' + name: '{name}_wheezy' - job-template: defaults: lintian-tests - name: '{name}_testing' + name: '{name}_jessie' - job-template: defaults: lintian-tests - name: '{name}_unstable' + name: '{name}_sid' - project: name: lintian-tests do_not_edit: '<br><br>Job configuration source is <a href="http://anonscm.debian.org/gitweb/?p=qa/jenkins.debian.net.git;a=blob;f=job-cfg/lintian-tests.yaml">lintian-tests.yaml</a>.' gitrepo: 'git://anonscm.debian.org/lintian/lintian.git' jobs: - - '{name}_unstable': - my_distro: 'unstable' + - '{name}_sid': + my_distro: 'sid' my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on unstable.' + my_description: 'Debian/Lintian testsuite running on sid.' my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org' - - '{name}_testing': - my_distro: 'testing' + - '{name}_jessie': + my_distro: 'jessie' my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on testing.' + my_description: 'Debian/Lintian testsuite running on jessie.' my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org' - - '{name}_stable': - my_distro: 'stable+backports' + - '{name}_wheezy': + my_distro: 'wheezy+backports' my_shell: 'debian/rules runtests' - my_description: 'Debian/Lintian testsuite running on stable.' + my_description: 'Debian/Lintian testsuite running on wheezy.' my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org' |