diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-19 10:03:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-19 10:03:59 +0200 |
commit | a155f9142d5c15cc0e6c297c8cb0d858b8f6ce56 (patch) | |
tree | 1d694203dc56d1aea163a6a63f30cbfbc71e29e1 /bin/reproducible_netbsd.sh | |
parent | d62a1d054dc3948aff3493fa69b195173370e5a7 (diff) | |
download | jenkins.debian.net-a155f9142d5c15cc0e6c297c8cb0d858b8f6ce56.tar.xz |
reproducible: improve output
Diffstat (limited to 'bin/reproducible_netbsd.sh')
-rwxr-xr-x | bin/reproducible_netbsd.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh index a2cb28f1..b6d35b1e 100755 --- a/bin/reproducible_netbsd.sh +++ b/bin/reproducible_netbsd.sh @@ -44,7 +44,7 @@ trap cleanup_tmpdirs INT TERM EXIT cd $TMPBUILDDIR echo "=============================================================================" -echo "$(date -u) - Cloning the netbsd git repository (which is autosynced with their CVS repository)" +echo "$(date -u) - Cloning the NetBSD git repository (which is synced with the NetBSD CVS repository)" echo "=============================================================================" git clone --depth 1 https://github.com/jsonn/src mv src netbsd @@ -62,7 +62,7 @@ git log -1 export MKREPRO="yes" echo "=============================================================================" -echo "$(date -u) - Building netbsd ${NETBSD_VERSION} - first build run." +echo "$(date -u) - Building NetBSD ${NETBSD_VERSION} - first build run." echo "=============================================================================" export TZ="/usr/share/zoneinfo/Etc/GMT+12" # actually build everything @@ -78,14 +78,14 @@ for MACHINE in $MACHINES ; do done echo "=============================================================================" -echo "$(date -u) - Building netbsd ${NETBSD_VERSION} - cleaning up between builds." +echo "$(date -u) - Building NetBSD ${NETBSD_VERSION} - cleaning up between builds." echo "=============================================================================" rm obj/releasedir -r rm obj/destdir.* -r # we keep the toolchain(s) echo "=============================================================================" -echo "$(date -u) - Building netbsd - second build run." +echo "$(date -u) - Building NetBSD - second build run." echo "=============================================================================" export TZ="/usr/share/zoneinfo/Etc/GMT-14" export LANG="fr_CH.UTF-8" @@ -124,7 +124,7 @@ rm -r $TMPBUILDDIR/netbsd TIMEOUT="30m" DIFFOSCOPE="$(schroot --directory /tmp -c source:jenkins-reproducible-${DBDSUITE}-diffoscope diffoscope -- --version 2>&1)" echo "=============================================================================" -echo "$(date -u) - Running $DIFFOSCOPE on netbsd..." +echo "$(date -u) - Running $DIFFOSCOPE on NetBSD build results..." echo "=============================================================================" FILES_HTML=$(mktemp --tmpdir=$TMPDIR) GOOD_FILES_HTML=$(mktemp --tmpdir=$TMPDIR) @@ -199,7 +199,7 @@ cat > $PAGE <<- EOF <div class="page-content"> EOF write_page_intro NetBSD -write_page " <p>$GOOD_FILES ($GOOD_PERCENT%) out of $ALL_FILES built netbsd files were reproducible in our test setup" +write_page " <p>$GOOD_FILES ($GOOD_PERCENT%) out of $ALL_FILES built NetBSD files were reproducible in our test setup" if [ "$GOOD_PERCENT" = "100.0" ] ; then write_page "!" else |