summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_dashboard.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-12-11 22:58:38 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-11 22:58:42 +0100
commiteb82f85d470c44a9763700c8d570dd328cc1cdfa (patch)
tree45e0d7912a4e3ba72e9ec727eff2b8655806c98c /bin/reproducible_html_dashboard.sh
parent62042a28bc6c4ad46154de98f95c682ffc3ed30a (diff)
downloadjenkins.debian.net-eb82f85d470c44a9763700c8d570dd328cc1cdfa.tar.xz
reproducible: more force+debug to get graphs to be regenerated each midnight
Diffstat (limited to 'bin/reproducible_html_dashboard.sh')
-rwxr-xr-xbin/reproducible_html_dashboard.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh
index 490bd5ba..008a55a4 100755
--- a/bin/reproducible_html_dashboard.sh
+++ b/bin/reproducible_html_dashboard.sh
@@ -388,7 +388,8 @@ create_suite_arch_stats_page() {
write_page " <a href=\"/$SUITE/$ARCH/${TABLE[0]}.png\"><img src=\"/$SUITE/$ARCH/${TABLE[0]}.png\" alt=\"${MAINLABEL[0]}\"></a>"
for i in 0 2 ; do
# recreate png once a day
- if [ ! -f $BASE/$SUITE/$ARCH/${TABLE[$i]}.png ] || [ $DUMMY_FILE -ot $BASE/$SUITE/$ARCH/${TABLE[$i]}.png ] ; then
+ if [ ! -f $BASE/$SUITE/$ARCH/${TABLE[$i]}.png ] || [ $DUMMY_FILE -nt $BASE/$SUITE/$ARCH/${TABLE[$i]}.png ] ; then
+ echo "debug1 $ARCH $SUITE/$ARCH/${TABLE[$i]}.png"
create_png_from_table $i $SUITE/$ARCH/${TABLE[$i]}.png
fi
done
@@ -463,7 +464,8 @@ create_dashboard_page() {
for i in 8 9 3 7 4 5 ; do
write_page " <a href=\"/${TABLE[$i]}.png\"><img src=\"/${TABLE[$i]}.png\" class="halfview" alt=\"${MAINLABEL[$i]}\"></a>"
# redo pngs once a day
- if [ ! -f $BASE/${TABLE[$i]}.png ] || [ $DUMMY_FILE -ot $BASE/${TABLE[$i]}.png ] ; then
+ if [ ! -f $BASE/${TABLE[$i]}.png ] || [ $DUMMY_FILE -nt $BASE/${TABLE[$i]}.png ] ; then
+ echo "debug2 $ARCH ${TABLE[$i]}.png"
create_png_from_table $i ${TABLE[$i]}.png
fi
done
@@ -475,7 +477,8 @@ create_dashboard_page() {
write_page " <a href=\"/${TABLE[1]}_$ARCH.png\"><img src=\"/${TABLE[1]}_$ARCH.png\" alt=\"${MAINLABEL[$i]}\"></a>"
# redo arch specific pngs once a day
for ARCH in ${ARCHS} ; do
- if [ ! -f $BASE/${TABLE[1]}_$ARCH.png ] || [ $DUMMY_FILE -ot $BASE/${TABLE[1]}_$ARCH.png ] ; then
+ if [ ! -f $BASE/${TABLE[1]}_$ARCH.png ] || [ $DUMMY_FILE -nt $BASE/${TABLE[1]}_$ARCH.png ] ; then
+ echo "debug3 $ARCH ${TABLE[1]}_$ARCH.png"
create_png_from_table 1 ${TABLE[1]}_$ARCH.png
fi
done