summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_lede_common.sh
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2017-06-28 00:20:14 +0200
committerHolger Levsen <holger@layer-acht.org>2017-06-28 00:41:50 +0200
commit1542df26bd0d4ac34df04528bb6cb4eda8388002 (patch)
treea595141130ecad6990d6867fcd43bcc6a9a141c3 /bin/reproducible_lede_common.sh
parent3c9e0ca2918e3a0e94eab71ec1ba4a9c19a41bb6 (diff)
downloadjenkins.debian.net-1542df26bd0d4ac34df04528bb6cb4eda8388002.tar.xz
reproducible LEDE: move `git log -1 > .html` to node_document_environment
Removes also the garbage in the git commit section Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_lede_common.sh')
-rw-r--r--bin/reproducible_lede_common.sh16
1 files changed, 6 insertions, 10 deletions
diff --git a/bin/reproducible_lede_common.sh b/bin/reproducible_lede_common.sh
index 5301c3d0..85b0867f 100644
--- a/bin/reproducible_lede_common.sh
+++ b/bin/reproducible_lede_common.sh
@@ -79,7 +79,12 @@ node_document_environment() {
local toolchain_html=$tmpdir/toolchain.html
cd $tmpdir/build/source
- echo "<table><tr><th>Target toolchains built</th></tr>" > $toolchain_html
+ cat /dev/null > $toolchain_html
+ echo " <table><tr><th>git commit built</th></tr><tr><td><code>" >> $toolchain_html
+ git log -1 >> $toolchain_html
+ echo " </code></td></tr></table>" >> $toolchain_html
+
+ echo "<table><tr><th>Target toolchains built</th></tr>" >> $toolchain_html
for i in $(ls -1d staging_dir/toolchain*|cut -d "-" -f2-|xargs echo) ; do
echo " <tr><td><code>$i</code></td></tr>" >> $toolchain_html
done
@@ -334,14 +339,6 @@ openwrt_download() {
done
}
-openwrt_get_commit() {
- TMPDIR=$1
- TYPE=$2
- cd $TMPDIR/build/source
- git log -1
-}
-
-
openwrt_get_banner() {
TMPDIR=$1
TYPE=$2
@@ -421,7 +418,6 @@ build_two_times() {
RUN=b1
ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_build $TYPE $RUN $TARGET $CONFIG $TMPDIR
ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_get_banner $TMPDIR $TYPE > $BANNER_HTML
- ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_get_commit $TMPDIR $TYPE > $GIT_COMMIT
# cut away everything before begin and after the end…
# (thats noise generated by the way we run this via reproducible_common.sh)
cat $BANNER_HTML | sed '/===bannerend===/,$d' | tac | sed '/===bannerbegin===/,$d' | tac > $BANNER_HTML