diff options
author | Reiner Herrmann <reiner@reiner-h.de> | 2016-02-21 00:48:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-02-22 20:38:12 +0100 |
commit | e4294b1b9f5c3a318c235e6f6e93f6ebcd17930b (patch) | |
tree | 58a9999c67fc8de5526a8af1a606a325ab40405d /bin | |
parent | c75b80b11e082adf1aa22f5ab83e034b462b8dbe (diff) | |
download | jenkins.debian.net-e4294b1b9f5c3a318c235e6f6e93f6ebcd17930b.tar.xz |
reproducible: mention shell variation in variation table
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index e97db88c..2492a3e8 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -442,9 +442,11 @@ write_explaination_table() { FUTURE=$(date --date="${DATE}+398 days" +'%Y-%m-%d') if [ "$1" = "debian" ] ; then write_page "<tr><td>CPU type</td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep CPU_MODEL | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td><td>on amd64: same for both builds (currently, work in progress<br />on armhf: sometimes varied (depending on the build job)</td></tr>" + write_page "<tr><td>/bin/sh</td><td>/bin/dash</td><td>/bin/bash</td></tr>" write_page "<tr><td>year, month, date</td><td>today ($DATE) or on amd64 also: $FUTURE</td><td>on amd64: varied (398 days difference)<br />on armhf: same for both builds (currently, work in progress)</td></tr>" else write_page "<tr><td>CPU type</td><td>$(cat /proc/cpuinfo|grep 'model name'|head -1|cut -d ":" -f2-)</td><td>same for both builds</td></tr>" + write_page "<tr><td>/bin/sh</td><td colspan=\"2\"> is not yet varied between rebuilds of $1.</td></tr>" if [ "$1" != "FreeBSD" ] ; then write_page "<tr><td>year, month, date</td><td>today ($DATE)</td><td>same for both builds (currently, work in progress)</td></tr>" else |