From 8738fdf9d5e2fcb0da85d9471b3ce04e95171cff Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 9 Jan 2016 02:16:40 +0100 Subject: reproducible dashboard: sort hostnames in variation table by arch and alphabetically --- bin/reproducible_common.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index b9045011..2fd3683f 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -365,7 +365,16 @@ write_explaination_table() { fi write_page "" if [ "$1" = "debian" ] ; then - write_page "" + write_page "" write_page "" else write_page "" -- cgit v1.2.3-70-g09d2
variationfirst buildsecond build
hostnameone of: $(for i in $BUILD_NODES ; do echo '
  ' ; echo $i | cut -d '.' -f1 ; done)
i-capture-the-hostname
hostnameone of:" + for a in ${ARCHS} ; do + for i in $(echo $BUILD_NODES | sed -s 's# #\n#g' | sort -u) ; do + if [ "$(echo $i | grep $a)" ] ; then + write_page "
  " + write_page "$(echo $i | cut -d '.' -f1)" + fi + done + done + write_page "
i-capture-the-hostname
domainname$(hostname -d)i-capture-the-domainname
hostname is not yet varied between rebuilds of $1.