diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-17 21:33:22 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-17 21:33:22 +0100 |
commit | 90f1ed8fff4c7a8e987034852e85a316e7a0a951 (patch) | |
tree | dafdd8af929ae00842dd529039c849fabaad06b1 | |
parent | b65acc7705a21aea81bb15e2a092d68be6a9a087 (diff) | |
download | jenkins.debian.net-90f1ed8fff4c7a8e987034852e85a316e7a0a951.tar.xz |
reproducible archlinux: detect two more patterns of ftbfs
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index aa076c7e..207ce260 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -58,7 +58,7 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do EXTRA_REASON="(unknown public key)" fi echo " <img src=\"/userContent/static/weather-severe-alert.png\" alt=\"404 icon\" /> failed to verify source with PGP signatures $EXTRA_REASON" >> $HTML_BUFFER - elif [ ! -z "$(egrep '(==> ERROR: One or more files did not pass the validity check|makepkg was killed by timeout after)' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + elif [ ! -z "$(egrep '(==> ERROR: One or more files did not pass the validity check|makepkg was killed by timeout after|==> ERROR: install file .* does not exist or is not a regular file|==> ERROR: The download program wget is not installed)' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=$HTML_FTBFS let NR_FTBFS+=1 echo " <img src=\"/userContent/static/weather-storm.png\" alt=\"ftbfs icon\" /> failed to verify source" >> $HTML_BUFFER |