From 9fa8491a026f876db536cb27a2bb2d4c149af9b9 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 9 Dec 2015 11:20:37 +0100 Subject: reproducible archlinux: display icons for results too --- bin/reproducible_html_archlinux.sh | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'bin/reproducible_html_archlinux.sh') diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 432ae173..aa948f58 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -44,25 +44,26 @@ for PKG in $(find $ARCHBASE/* -maxdepth 1 -type d -exec basename {} \;) ; do write_page " " if [ -z "$(cd $ARCHBASE/$PKG/ ; ls *.pkg.tar.xz.html 2>/dev/null)" ] ; then if [ ! -z "$(grep '==> ERROR: Could not resolve all dependencies' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " could not resolve dependencies" + write_page " \"depwait could not resolve dependencies" elif [ ! -z "$(egrep '==> ERROR: .pacman. failed to install missing dependencies.' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to install dependencies" + write_page " \"depwait failed to install dependencies" elif [ ! -z "$(egrep '==> ERROR: A failure occurred in (build|package)' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to build from source" + write_page " \"ftbfs failed to build from source" elif [ ! -z "$(egrep '==> ERROR: A failure occurred in check' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to build from source, while running tests" + write_page " \"ftbfs failed to build from source, while running tests" elif [ ! -z "$(egrep '==> ERROR: Failure while downloading' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to download source" + write_page " \"404 failed to download source" elif [ ! -z "$(egrep '==> ERROR: One or more files did not pass the validity check' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to verify source" + write_page " \"ftbfs failed to verify source" elif [ ! -z "$(egrep 'makepkg was killed by timeout after 4h' $ARCHBASE/$PKG/build1.log)" ] ; then - write_page " failed to build, killed by timeout after 4h" + write_page " \"ftbfs failed to build, killed by timeout after 4h" else write_page " probably failed to build from source, please investigate" + # or is it reproducible??? fi else for ARTIFACT in $(cd $ARCHBASE/$PKG/ ; ls *.pkg.tar.xz.html) ; do - write_page " ${ARTIFACT:0:-5}is unreproducible
" + write_page " \"unreproducible ${ARTIFACT:0:-5} is unreproducible
" done fi write_page " " -- cgit v1.2.3-54-g00ecf