diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-06 01:15:28 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-06 01:15:28 +0200 |
commit | c104c7f37dc12589a55bf407648ddba6ea2f9b4d (patch) | |
tree | 02dbd8b2ebd0072b30d580097d40d320957c8f66 /bin | |
parent | 8b59c46e1e70901cb8f313239ef8672ba5c92bf8 (diff) | |
download | jenkins.debian.net-c104c7f37dc12589a55bf407648ddba6ea2f9b4d.tar.xz |
reproducible netbsd: it either builds or it doesn't.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_netbsd.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh index 649ca6d6..a1f71ec0 100755 --- a/bin/reproducible_netbsd.sh +++ b/bin/reproducible_netbsd.sh @@ -111,7 +111,6 @@ echo "$(date -u) - Running $DBDVERSION on netbsd..." echo "=============================================================================" FILES_HTML=$(mktemp --tmpdir=$TMPDIR) echo " <ul>" > $FILES_HTML -BAD_FILES=0 GOOD_FILES=0 ALL_FILES=0 SIZE="" @@ -140,7 +139,6 @@ for i in * ; do echo " </table>" >> $FILES_HTML done GOOD_PERCENT=$(echo "scale=1 ; ($GOOD_FILES*100/$ALL_FILES)" | bc) -BAD_PERCENT=$(echo "scale=1 ; ($BAD_FILES*100/$ALL_FILES)" | bc) # are we there yet? if [ "$GOOD_PERCENT" = "100.0" ] ; then MAGIC_SIGN="!" @@ -172,7 +170,7 @@ write_page " <p>$GOOD_FILES ($GOOD_PERCENT%) out of $ALL_FILES built netbs if [ "$GOOD_PERCENT" = "100.0" ] ; then write_page "!" else - write_page ", while $BAD_FILES ($BAD_PERCENT%) failed to build from source." + write_page "." fi write_page " These tests were last run on $DATE for version ${NETBSD_VERSION}.</p>" write_explaination_table NetBSD |