diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-31 00:41:46 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-31 00:41:46 +0200 |
commit | 3bbf29797ec728ee82f2ce93398150df00f0e55e (patch) | |
tree | 6d469735c1dad1ce2a5837e468a76bee7f5c3fdf /bin | |
parent | 1a1fc1f7abce8ddfb93357c525ed14123d936f9f (diff) | |
download | jenkins.debian.net-3bbf29797ec728ee82f2ce93398150df00f0e55e.tar.xz |
refactor, bah
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 95294376..dc2b7768 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -369,6 +369,8 @@ init() { local ANNOUNCE="Artifacts will be preserved." fi create_results_dirs + # used to catch race conditions when the same package is being built by two parallel jobs + LOCKFILE="/tmp/reproducible-lockfile-${SUITE}-${ARCH}-${SRCPACKAGE}" echo "=============================================================================" echo "Trying to reproducibly build ${SRCPACKAGE} in ${SUITE} on ${ARCH} now. $ANNOUNCE" echo "=============================================================================" @@ -387,8 +389,6 @@ init() { fi echo "Starting to build ${SRCPACKAGE}/${SUITE}/${ARCH} on $DATE" | tee ${RBUILDLOG} echo "The jenkins build log is/was available at ${BUILD_URL}console" | tee -a ${RBUILDLOG} - # used to catch race conditions when the same package is being built by two parallel jobs - LOCKFILE="/tmp/reproducible-lockfile-${SUITE}-${ARCH}-${SRCPACKAGE}" } get_source_package() { |