diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-23 04:46:21 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-23 04:46:21 +0200 |
commit | 33064062fc3a9f03decc0f167d17c25be58f63a8 (patch) | |
tree | f93d0cf23ef61a9b9085351abec1ed4f2008c84b | |
parent | d6a69a512cd27e5d3fb0772be5848c262feb3691 (diff) | |
download | jenkins.debian.net-33064062fc3a9f03decc0f167d17c25be58f63a8.tar.xz |
reproducible: jenkins is not a real build node anymore
-rwxr-xr-x | bin/reproducible_common.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_nodes_info.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 1169f17b..0e8d1226 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -45,7 +45,7 @@ SUITES="testing unstable experimental" ARCHS="armhf amd64" # define build nodes in use -BUILD_NODES="jenkins.debian.net profitbricks-build1-amd64.debian.net profitbricks-build2-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net" # these also needs to be defined in bin/jenkins_master_wrapper.sh +BUILD_NODES="profitbricks-build1-amd64.debian.net profitbricks-build2-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net" # these also needs to be defined in bin/jenkins_master_wrapper.sh BUILD_ENV_VARS="ARCH NUM_CPU CPU_MODEL DATETIME" # these also needs to be defined in bin/reproducible_info.sh # existing usertags diff --git a/bin/reproducible_nodes_info.sh b/bin/reproducible_nodes_info.sh index 6dc49214..4015b6e2 100755 --- a/bin/reproducible_nodes_info.sh +++ b/bin/reproducible_nodes_info.sh @@ -15,7 +15,7 @@ mkdir -p $TARGET_DIR TMPFILE_SRC=$(mktemp) TMPFILE_NODE=$(mktemp) -for NODE in $BUILD_NODES ; do +for NODE in $BUILD_NODES jenkins.debian.net ; do if [ "$NODE" = "jenkins.debian.net" ] ; then echo "$(date -u) - Trying to update $TARGET_DIR/$NODE." /srv/jenkins/bin/reproducible_info.sh > $TARGET_DIR/$NODE |