summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-10-10 02:18:43 +0200
committerHolger Levsen <holger@layer-acht.org>2015-10-10 02:18:43 +0200
commitef69476437c7071675a4a0867f91618c3540ecd6 (patch)
tree6ebd3beaf1ebc987fcc4d79e79aee83ce90a3674 /bin/reproducible_build.sh
parentf11b3cc452f10a7e69746d9c3837243545332ea9 (diff)
downloadjenkins.debian.net-ef69476437c7071675a4a0867f91618c3540ecd6.tar.xz
reproducible: sanitize naming scheme
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index b96c1d7a..0ca68b3d 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -417,11 +417,12 @@ choose_package() {
BAD_BUILDS=$(mktemp --tmpdir=$TMPDIR)
sqlite3 -init $INIT ${PACKAGES_DB} "SELECT package_id, date_build_started, builder FROM schedule WHERE builder LIKE '${BUILDER_PREFIX}%'" > $BAD_BUILDS
if [ -s "$BAD_BUILDS" ] ; then
- # stale_builds.log is mailed once a day by reproducible_maintenance.sh
- echo "$(date -u) - stale builds found, cleaning db from these:" | tee -a /var/log/jenkins/stale_builds.log
- cat $BAD_BUILDS | tee -a /var/log/jenkins/stale_builds.log
+ local STALELOG=/var/log/jenkins/reproducible-stale-builds.log
+ # reproducible-stale-builds.log is mailed once a day by reproducible_maintenance.sh
+ echo "$(date -u) - stale builds found, cleaning db from these:" | tee -a $STALELOG
+ cat $BAD_BUILDS | tee -a $STALELOG
sqlite3 -init $INIT ${PACKAGES_DB} "UPDATE schedule SET date_build_started='', builder='' WHERE builder LIKE '${BUILDER_PREFIX}%'"
- echo >> /var/log/jenkins/stale_builds.log
+ echo >> $STALELOG
fi
rm -f $BAD_BUILDS
# mark build attempt, first test if none else marked a build attempt recently