diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-09-20 11:30:13 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-09-20 11:30:13 +0200 |
commit | 0a5fe097a768ea5ef19318ff73c94458e53b05f2 (patch) | |
tree | 6a6b61c5bfc51231ebc2334c829e2c1bcbfd4e35 | |
parent | 3014698ab00362050b014ca87f3f280a4431fc8b (diff) | |
download | jenkins.debian.net-0a5fe097a768ea5ef19318ff73c94458e53b05f2.tar.xz |
chroot-installs: omit certain jobs as long as #869155 #867695 #864947 #872712 #867658 are still open
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/common-functions.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index 14dd0661..b0c4f9e2 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -52,10 +52,14 @@ if [ "${0:0:5}" != "/tmp/" ] ; then # abort certain jobs if we know they will fail due to certain bugs… BLOCKER=848422 case $JOB_NAME in - chroot-installation_sid_install_design-desktop-graphics) - abort_if_bug_is_still_open 869155 ;; - chroot-installation_sid_install_parl-desktop-world) - abort_if_bug_is_still_open 864947 ;; + chroot-installation_*_install_design-desktop-*) + for BLOCKER in 869155 867695 ; do + abort_if_bug_is_still_open $BLOCKER + done ;; + chroot-installation_*_install_parl-desktop*) + for BLOCKER in 864947 872712 867658 ; do + abort_if_bug_is_still_open $BLOCKER + done ;; dpkg_*_find_trigger_cycles) abort_if_bug_is_still_open 874504 ;; #lintian-tests_sid) |