diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-18 16:30:11 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-18 16:30:11 +0100 |
commit | ad9020fe01e8d683f95da7a12763cf968e4295fb (patch) | |
tree | 11843e1b90962e4d4f3e8f498262e98a6432e6b4 | |
parent | d733b463b36219e88d27c771abbd76b199f43e37 (diff) | |
download | jenkins.debian.net-ad9020fe01e8d683f95da7a12763cf968e4295fb.tar.xz |
refactor and also abort chroot-installation_stretch_install_education-*_upgrade_to_sid jobs while #848422 is open
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/common-functions.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index f9f3db58..969d16a1 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -51,7 +51,13 @@ if [ "${0:0:5}" != "/tmp/" ] ; then fi # abort certain jobs if we know they will fail due to certain bugs… case $JOB_NAME in - edu-packages_sid*|chroot-installation_sid_install_education*|lintian-tests_sid) + lintian-tests_sid) + abort_if_bug_is_still_open 848422 ;; + edu-packages_sid*) + abort_if_bug_is_still_open 848422 ;; + chroot-installation_sid_install_education*) + abort_if_bug_is_still_open 848422 ;; + chroot-installation_stretch_install_education-*_upgrade_to_sid) abort_if_bug_is_still_open 848422 ;; *) ;; esac |