diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-13 07:50:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-13 07:50:48 +0200 |
commit | bd64abb89b29d51bb3a243595bc3facec240a2db (patch) | |
tree | 5805b3edf7d362b8f4936b9dce8564b515e861e4 /bin | |
parent | 619d4bb423beda134376d174e2d9241dffd01ba4 (diff) | |
download | jenkins.debian.net-bd64abb89b29d51bb3a243595bc3facec240a2db.tar.xz |
reproducible: improve db locking, add new table sources_scheduled
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 7 | ||||
-rwxr-xr-x | bin/reproducible_setup.sh | 13 | ||||
-rwxr-xr-x | bin/reproducible_stats.sh | 7 |
3 files changed, 27 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 111e16b5..d1c1f5b1 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -12,6 +12,13 @@ INIT=/var/lib/jenkins/reproducible.init if [ ! -f $PACKAGES_DB ] ; then echo "$PACKAGES_DB doesn't exist, no builds possible." exit 1 +elif [ -f $PACKAGES_DB.lock ] ; then + for i in $(seq 0 100) ; do + sleep 15 + [ -f $PACKAGES_DB.lock ] || break + done + echo "$PACKAGES_DB.lock still exist, exiting." + exit 1 fi # create dirs for results diff --git a/bin/reproducible_setup.sh b/bin/reproducible_setup.sh index 50c7ac44..9bd0b341 100755 --- a/bin/reproducible_setup.sh +++ b/bin/reproducible_setup.sh @@ -18,9 +18,22 @@ if [ ! -f ${PACKAGES_DB} ] ; then build_date TEXT NOT NULL, PRIMARY KEY (name))' sqlite3 ${PACKAGES_DB} ' + CREATE TABLE sources_scheduled + (name TEXT NOT NULL, + date_scheduled TEXT NOT NULL, + date_build_started TEXT NOT NULL, + PRIMARY KEY (name))' + sqlite3 ${PACKAGES_DB} ' CREATE TABLE sources (name TEXT NOT NULL, version TEXT NOT NULL)' +elif [ -f $PACKAGES_DB.lock ] ; then + for i in $(seq 0 100) ; do + sleep 15 + [ -f $PACKAGES_DB.lock ] || break + done + echo "$PACKAGES_DB.lock still exist, exiting." + exit 1 fi # 30 seconds timeout when trying to get a lock INIT=/var/lib/jenkins/reproducible.init diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 8a84f8be..933a666d 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -13,6 +13,13 @@ INIT=/var/lib/jenkins/reproducible.init if [ ! -f $PACKAGES_DB ] ; then echo "$PACKAGES_DB doesn't exist, no stats possible." exit 1 +elif [ -f $PACKAGES_DB.lock ] ; then + for i in $(seq 0 100) ; do + sleep 15 + [ -f $PACKAGES_DB.lock ] || break + done + echo "$PACKAGES_DB.lock still exist, exiting." + exit 1 fi declare -A GOOD |