From d430feca38522e1bcfdae4a264ad10134ca87ca5 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 7 Oct 2014 14:58:33 +0200 Subject: reproducible: only build $PKG pages if they dont exist or are older than $BUILD_DATE --- bin/reproducible_stats.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 67f3b845..4dd5af2d 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -60,7 +60,6 @@ EOF } init_navi_frame() { - NAVI="/var/lib/jenkins/userContent/rb-pkg/$1_navigation.html" echo "" > $NAVI echo "" >> $NAVI echo "

$1 " >> $NAVI @@ -83,8 +82,13 @@ link_packages() { VERSION=$(echo $RESULT|cut -d "|" -f2) # remove epoch EVERSION=$(echo $VERSION | cut -d ":" -f2) - if [ -f "/var/lib/jenkins/userContent/dbd/${PKG}_${EVERSION}.debbindiff.html" ] || [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] || [ -f "/var/lib/jenkins/userContent/rbuild/${PKG}_${EVERSION}.rbuild.log" ]; then - STAR="" + STAR="" + if $EXTRA_STAR && [ ! -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then + STAR="β" # used to be a star... + fi + NAVI="/var/lib/jenkins/userContent/rb-pkg/$1_navigation.html" + # only build $PKG pages if they don't exist or are older than $BUILD_DATE + if [ ! -f $NAVI ] || [ "$(find ! -newermt '$BUILD_DATE' -name $NAVI)" != "" ] ; then MAINLINK="" init_navi_frame "$PKG" "$VERSION" "$BUILD_DATE" if [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then @@ -110,6 +114,8 @@ link_packages() { finish_navi_frame write_pkg_frameset "$PKG" "$MAINLINK" + fi + if [ -f "/var/lib/jenkins/userContent/rbuild/${PKG}_${EVERSION}.rbuild.log" ] ; then write_index " $PKG$STAR " else write_index " $PKG " -- cgit v1.2.3-70-g09d2