summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build_service.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-04-27 12:41:16 +0200
committerHolger Levsen <holger@layer-acht.org>2017-04-27 12:41:16 +0200
commitf0ffe1e2a6df2fb87f9b22f8599f05fac37a1472 (patch)
treefd0e855dc2b727d86e741b93bf1e30f4e6a28070 /bin/reproducible_build_service.sh
parentd6f77dd26289c8e5770b1832c8830dafed5171e2 (diff)
downloadjenkins.debian.net-f0ffe1e2a6df2fb87f9b22f8599f05fac37a1472.tar.xz
reproducible Debian: comment code (and rename one function)
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_build_service.sh')
-rwxr-xr-xbin/reproducible_build_service.sh27
1 files changed, 24 insertions, 3 deletions
diff --git a/bin/reproducible_build_service.sh b/bin/reproducible_build_service.sh
index 0c1c3e4c..d9df379e 100755
--- a/bin/reproducible_build_service.sh
+++ b/bin/reproducible_build_service.sh
@@ -9,8 +9,16 @@ set -e
NODE1=""
NODE2=""
-choose_node() {
+#
+# this function defines which builds take place on which nodes
+#
+choose_nodes() {
case $1 in
+ #
+ # amd64, i386 and arm64 nodes are chosen in a way that one build always runs
+ # on a node running in the future, the other on a node with correct date.
+ # armhf builds are distributed by the build capacity of the nodes, see below.
+ #
amd64_1) NODE1=profitbricks-build1-amd64 NODE2=profitbricks-build5-amd64 ;;
amd64_2) NODE1=profitbricks-build5-amd64 NODE2=profitbricks-build1-amd64 ;;
amd64_3) NODE1=profitbricks-build1-amd64 NODE2=profitbricks-build15-amd64 ;;
@@ -189,6 +197,9 @@ choose_node() {
}
startup_workers() {
+ #
+ # loop through all archs
+ #
for ARCH in amd64 i386 arm64 armhf ; do
case $ARCH in
amd64) MAX=40 ;;
@@ -197,12 +208,19 @@ startup_workers() {
armhf) MAX=66 ;;
*) ;;
esac
+ #
+ # startup as many workers as defined above
+ #
for i in $(seq 1 $MAX) ; do
+ #
# sleep up to 2.3 seconds (additionally to the random sleep reproducible_build.sh does anyway)
+ #
/bin/sleep $(echo "scale=1 ; $(shuf -i 1-23 -n 1)/10" | bc )
+ #
+ # continue loop if the worker to be started is already running
+ #
WORKER_NAME=${ARCH}_$i
-
WORKER_BIN=/srv/jenkins/bin/reproducible_worker.sh
RUNNING=$(ps fax|grep -v grep|grep "$WORKER_BIN $WORKER_NAME")
if [ -z "$RUNNING" ] ; then
@@ -210,7 +228,10 @@ startup_workers() {
continue
fi
- choose_node $WORKER_NAME
+ #
+ # actually start the worker
+ #
+ choose_nodes $WORKER_NAME
BUILD_BASE=/var/lib/jenkins/userContent/reproducible/debian/build_service/$WORKER_NAME
mkdir -p $BUILD_BASE
echo "$(date --utc) - Starting $WORKER_NAME"