summaryrefslogtreecommitdiffstats
path: root/bin/common-functions.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-09-20 11:30:13 +0200
committerHolger Levsen <holger@layer-acht.org>2017-09-20 11:30:13 +0200
commit0a5fe097a768ea5ef19318ff73c94458e53b05f2 (patch)
tree6a6b61c5bfc51231ebc2334c829e2c1bcbfd4e35 /bin/common-functions.sh
parent3014698ab00362050b014ca87f3f280a4431fc8b (diff)
downloadjenkins.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>
Diffstat (limited to 'bin/common-functions.sh')
-rwxr-xr-xbin/common-functions.sh12
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)