diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-17 13:49:34 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-17 13:49:34 +0100 |
commit | c184a898db4c87fcaf66c1a0ae9c949569a34827 (patch) | |
tree | 2f78008bca2bd36baf94fef52d55605c020819c8 /bin | |
parent | f9a14404203d69ce1dee9254283d9ed5e0311720 (diff) | |
download | jenkins.debian.net-c184a898db4c87fcaf66c1a0ae9c949569a34827.tar.xz |
reprodcucible: more sleep is good against race conditions
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 05bbf741..2423502d 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -14,8 +14,8 @@ common_init "$@" # support for different architectures (we have actual support only for amd64) ARCH="amd64" -# sleep 1-4 secs to randomize start times -/bin/sleep $(echo "scale=1 ; $(shuf -i 1-40 -n 1)/10" | bc ) +# sleep 1-8 secs to randomize start times +/bin/sleep $(echo "scale=1 ; $(shuf -i 1-80 -n 1)/10" | bc ) create_results_dirs() { mkdir -p /var/lib/jenkins/userContent/dbd/${SUITE}/${ARCH} |