summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-11-11 00:33:42 +0100
committerHolger Levsen <holger@layer-acht.org>2015-11-11 00:33:42 +0100
commit3778770ff1fbca985fb47541ad7ce20de96c268a (patch)
tree6368e1d9bb46d2d170516604f7319dc03ecdae4c
parent6e4d8650a66fa5f7e20dcbf3f50bb2cd57ba8d0d (diff)
downloadjenkins.debian.net-3778770ff1fbca985fb47541ad7ce20de96c268a.tar.xz
reproducible: add sixth armhf build node, thanks again to vagrant
-rw-r--r--THANKS.head2
-rwxr-xr-xbin/common-functions.sh4
-rwxr-xr-xbin/jenkins_master_wrapper.sh3
-rwxr-xr-xbin/reproducible_common.sh2
-rw-r--r--hosts/bpi0-armhf-rb/etc/pbuilderrc4
-rw-r--r--hosts/cbxi4pro0-armhf-rb/etc/pbuilderrc4
-rw-r--r--hosts/hb0-armhf-rb/etc/pbuilderrc4
-rw-r--r--hosts/jenkins/etc/munin/munin.conf12
-rw-r--r--hosts/jenkins/etc/pbuilderrc4
-rw-r--r--hosts/odxu4-armhf-rb/etc/pbuilderrc4
-rw-r--r--hosts/profitbricks-build1-amd64/etc/pbuilderrc4
-rw-r--r--hosts/profitbricks-build2-amd64/etc/pbuilderrc4
-rw-r--r--hosts/profitbricks-build5-amd64/etc/pbuilderrc4
-rw-r--r--hosts/profitbricks-build6-amd64/etc/pbuilderrc4
l---------hosts/wbd01
l---------hosts/wbd0-armhf-rb1
-rw-r--r--hosts/wbq0-armhf-rb/etc/munin/munin-node.conf2
-rw-r--r--hosts/wbq0-armhf-rb/etc/pbuilderrc4
-rw-r--r--hosts/wbq0-armhf-rb/etc/postfix/main.cf4
-rwxr-xr-xhosts/wbq0-armhf-rb/etc/rc.local11
-rw-r--r--job-cfg/reproducible.yaml32
21 files changed, 85 insertions, 29 deletions
diff --git a/THANKS.head b/THANKS.head
index 2d1e6b0b..52f76f89 100644
--- a/THANKS.head
+++ b/THANKS.head
@@ -12,7 +12,7 @@
** 18 cores and 48 GB memory for profitbricks-build6-amd64.debian.net
** 3 cores and 6 GB memory for freebsd-jenkins.debian.net (also running on Profitbricks virtual hardware)
* link:https://globalsign.com[GlobalSign] in January 2015 kindly provided free of charge SSL certificates for both jenkins.debian.net and reproducible.debian.net.
- * link:https://qa.debian.org/developer.php?login=vagrant%40debian.org[Vagrant] is kindly providing and hosting five 'armhf' systems, three quad-cores with 2 GB RAM each and two dual-cores with 1 GB RAM.
+ * link:https://qa.debian.org/developer.php?login=vagrant%40debian.org[Vagrant] is kindly providing and hosting six 'armhf' systems, three quad-cores with 2 GB RAM each and three dual-cores with 1 GB RAM.
=== Contributors
diff --git a/bin/common-functions.sh b/bin/common-functions.sh
index b6fd4272..f17fd264 100755
--- a/bin/common-functions.sh
+++ b/bin/common-functions.sh
@@ -57,14 +57,14 @@ else
if [ -z "$MIRROR" ]; then
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) export MIRROR=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) export MIRROR=http://ftp.us.debian.org/debian ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) export MIRROR=http://ftp.us.debian.org/debian ;;
*) echo "unsupported host, exiting." ; exit 1 ;;
esac
fi
if [ -z "$http_proxy" ]; then
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) export http_proxy="http://localhost:3128" ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) export http_proxy="http://10.0.0.15:8000/" ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) export http_proxy="http://10.0.0.15:8000/" ;;
*) echo "unsupported host, exiting." ; exit 1 ;;
esac
fi
diff --git a/bin/jenkins_master_wrapper.sh b/bin/jenkins_master_wrapper.sh
index e08e4da7..0eb61b77 100755
--- a/bin/jenkins_master_wrapper.sh
+++ b/bin/jenkins_master_wrapper.sh
@@ -21,6 +21,9 @@ case "$NODE_NAME" in
odxu4-armhf-rb.debian.net)
PORT=2229
;;
+ wbd0-armhf-rb.debian.net)
+ PORT=2223
+ ;;
profitbricks-build?-amd64.debian.net)
PORT=22
if [[ "$JOB_NAME" =~ rebootstrap_.* ]] ; then
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 6aa382f7..9042fc88 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -46,7 +46,7 @@ SUITES="testing unstable experimental"
ARCHS="armhf amd64"
# define build nodes in use
-BUILD_NODES="profitbricks-build1-amd64.debian.net profitbricks-build2-amd64.debian.net profitbricks-build5-amd64.debian.net profitbricks-build6-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net odxu4-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 profitbricks-build5-amd64.debian.net profitbricks-build6-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net odxu4-armhf-rb.debian.net wbd0-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 KERNEL1 KERNEL2" # these also needs to be defined in bin/reproducible_info.sh
# existing usertags
diff --git a/hosts/bpi0-armhf-rb/etc/pbuilderrc b/hosts/bpi0-armhf-rb/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/bpi0-armhf-rb/etc/pbuilderrc
+++ b/hosts/bpi0-armhf-rb/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/cbxi4pro0-armhf-rb/etc/pbuilderrc b/hosts/cbxi4pro0-armhf-rb/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/cbxi4pro0-armhf-rb/etc/pbuilderrc
+++ b/hosts/cbxi4pro0-armhf-rb/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/hb0-armhf-rb/etc/pbuilderrc b/hosts/hb0-armhf-rb/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/hb0-armhf-rb/etc/pbuilderrc
+++ b/hosts/hb0-armhf-rb/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/jenkins/etc/munin/munin.conf b/hosts/jenkins/etc/munin/munin.conf
index b6ae3718..c76f2793 100644
--- a/hosts/jenkins/etc/munin/munin.conf
+++ b/hosts/jenkins/etc/munin/munin.conf
@@ -248,6 +248,16 @@ contact.me.command mail -s "Munin notification ${var:host}" qa-jenkins-scm@lists
diskstats_utilization.graph no
diskstats_iops.graph no
+[wbd0-armhf-rb.debian.net]
+ address ssh://jenkins@wbd0-armhf-rb.debian.net:2223/bin/nc localhost 4949
+ use_node_name yes
+ diskstats_latency.sda.avgwrwait.warning 0:20
+ diskstats_latency.sda.avgrdwait.warning 0:10
+ diskstats_latency.graph no
+ diskstats_throughput.graph no
+ diskstats_utilization.graph no
+ diskstats_iops.graph no
+
[freebsd-jenkins.debian.net]
address 46.16.73.236
use_node_name yes
@@ -297,5 +307,5 @@ contact.me.command mail -s "Munin notification ${var:host}" qa-jenkins-scm@lists
# node_order Totals fii.foo.com fay.foo.com
#
[debian.net;]
- node_order jenkins.debian.net profitbricks-build1-amd64.debian.net profitbricks-build2-amd64.debian.net profitbricks-build3-amd64.debian.net profitbricks-build4-amd64.debian.net profitbricks-build5-amd64.debian.net profitbricks-build6-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net odxu4-armhf-rb.debian.net freebsd-jenkins.debian.net
+ node_order jenkins.debian.net profitbricks-build1-amd64.debian.net profitbricks-build2-amd64.debian.net profitbricks-build3-amd64.debian.net profitbricks-build4-amd64.debian.net profitbricks-build5-amd64.debian.net profitbricks-build6-amd64.debian.net wbq0-armhf-rb.debian.net cbxi4pro0-armhf-rb.debian.net bpi0-armhf-rb.debian.net hb0-armhf-rb.debian.net odxu4-armhf-rb.debian.net wbd0-armhf-rb.debian.net freebsd-jenkins.debian.net
diff --git a/hosts/jenkins/etc/pbuilderrc b/hosts/jenkins/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/jenkins/etc/pbuilderrc
+++ b/hosts/jenkins/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/odxu4-armhf-rb/etc/pbuilderrc b/hosts/odxu4-armhf-rb/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/odxu4-armhf-rb/etc/pbuilderrc
+++ b/hosts/odxu4-armhf-rb/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/profitbricks-build1-amd64/etc/pbuilderrc b/hosts/profitbricks-build1-amd64/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/profitbricks-build1-amd64/etc/pbuilderrc
+++ b/hosts/profitbricks-build1-amd64/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/profitbricks-build2-amd64/etc/pbuilderrc b/hosts/profitbricks-build2-amd64/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/profitbricks-build2-amd64/etc/pbuilderrc
+++ b/hosts/profitbricks-build2-amd64/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/profitbricks-build5-amd64/etc/pbuilderrc b/hosts/profitbricks-build5-amd64/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/profitbricks-build5-amd64/etc/pbuilderrc
+++ b/hosts/profitbricks-build5-amd64/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/profitbricks-build6-amd64/etc/pbuilderrc b/hosts/profitbricks-build6-amd64/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/profitbricks-build6-amd64/etc/pbuilderrc
+++ b/hosts/profitbricks-build6-amd64/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/wbd0 b/hosts/wbd0
new file mode 120000
index 00000000..c5b57921
--- /dev/null
+++ b/hosts/wbd0
@@ -0,0 +1 @@
+wbd0-armhf-rb \ No newline at end of file
diff --git a/hosts/wbd0-armhf-rb b/hosts/wbd0-armhf-rb
new file mode 120000
index 00000000..3966eabc
--- /dev/null
+++ b/hosts/wbd0-armhf-rb
@@ -0,0 +1 @@
+wbq0-armhf-rb \ No newline at end of file
diff --git a/hosts/wbq0-armhf-rb/etc/munin/munin-node.conf b/hosts/wbq0-armhf-rb/etc/munin/munin-node.conf
index 518abcca..d22b495a 100644
--- a/hosts/wbq0-armhf-rb/etc/munin/munin-node.conf
+++ b/hosts/wbq0-armhf-rb/etc/munin/munin-node.conf
@@ -63,4 +63,4 @@ host *
port 4949
allow ^78\.137\.96\.196
-hostname wbq0-armhf-rb.debian.net
+hostname wbd0-armhf-rb.debian.net
diff --git a/hosts/wbq0-armhf-rb/etc/pbuilderrc b/hosts/wbq0-armhf-rb/etc/pbuilderrc
index f18457c2..dad1de70 100644
--- a/hosts/wbq0-armhf-rb/etc/pbuilderrc
+++ b/hosts/wbq0-armhf-rb/etc/pbuilderrc
@@ -6,8 +6,8 @@
# read pbuilderrc.5 document for notes on specific options.
case $HOSTNAME in
jenkins|profitbricks-build?-amd64) MIRRORSITE=http://ftp.de.debian.org/debian ;;
- bpi0|cbxi4pro0|hb0|wbq0|odxu4) MIRRORSITE=http://ftp.us.debian.org/debian ;;
- *) echo "unsupported host, exiting." ; exit 1 ;;
+ bpi0|cbxi4pro0|hb0|wbq0|odxu4|wbd0) MIRRORSITE=http://ftp.us.debian.org/debian ;;
+ *) echo "unsupported host, exiting." ; exit 1 ;;
esac
EXTRAPACKAGES="" # better list them in bin/reproducible_setup_pbuilder.sh
APTCACHE=""
diff --git a/hosts/wbq0-armhf-rb/etc/postfix/main.cf b/hosts/wbq0-armhf-rb/etc/postfix/main.cf
index 0053b2b3..3d93e6ce 100644
--- a/hosts/wbq0-armhf-rb/etc/postfix/main.cf
+++ b/hosts/wbq0-armhf-rb/etc/postfix/main.cf
@@ -27,11 +27,11 @@ smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
-myhostname = wbq0-armhf-rb.debian.net
+myhostname = wbd0-armhf-rb.debian.net
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
-mydestination = wbq0-armhf-rb.debian.net, localhost
+mydestination = wbd0-armhf-rb.debian.net, localhost
relayhost =
#mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mynetworks = 127.0.0.0/8
diff --git a/hosts/wbq0-armhf-rb/etc/rc.local b/hosts/wbq0-armhf-rb/etc/rc.local
index 9493d09d..b069e6ba 100755
--- a/hosts/wbq0-armhf-rb/etc/rc.local
+++ b/hosts/wbq0-armhf-rb/etc/rc.local
@@ -13,4 +13,15 @@
echo "$(date) - system was rebooted" | mail -s "$(hostname -f) rebooted" root
+# disable running in the future for now
+exit 0
+
+systemctl disable systemd-timesyncd
+systemctl disable systemd-timedated
+systemctl stop systemd-timesyncd
+systemctl stop systemd-timedated
+ntpdate -b de.pool.ntp.org
+date --set="+400 days"
+echo "$(date) - system is running in the future now" | mail -s "$(hostname -f) in the future" root
+
exit 0
diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml
index 5c102223..ccff76e0 100644
--- a/job-cfg/reproducible.yaml
+++ b/job-cfg/reproducible.yaml
@@ -285,6 +285,10 @@
- job-template:
defaults: reproducible
+ name: '{name}_maintenance_armhf_wbd0'
+
+- job-template:
+ defaults: reproducible
name: '{name}_maintenance_amd64_profitbricks1'
- job-template:
@@ -341,6 +345,10 @@
- job-template:
defaults: reproducible
+ name: '{name}_setup_pbuilder_unstable_armhf_wbd0'
+
+- job-template:
+ defaults: reproducible
name: '{name}_setup_pbuilder_testing_amd64_profitbricks1'
- job-template:
@@ -425,6 +433,10 @@
- job-template:
defaults: reproducible
+ name: '{name}_setup_schroot_unstable_armhf_wbd0'
+
+- job-template:
+ defaults: reproducible
name: '{name}_setup_schroot_testing_amd64_jenkins'
- job-template:
@@ -660,7 +672,7 @@
name: '{name}_builder_amd64_32'
# use this to get an overview how builds are distributed on the nodes
-# grep armhf job-cfg/reproducible.yaml |grep build.sh ; echo ; echo ; echo ; for i in bpi0 wbq0 cbxi4pro0 hb0 odxu4 ; do echo "$i:" ; grep armhf job-cfg/reproducible.yaml |grep build.sh|grep $i ; echo ; done
+# grep armhf job-cfg/reproducible.yaml |grep build.sh ; echo ; echo ; echo ; for i in bpi0 wbq0 cbxi4pro0 hb0 odxu4 wbd0 ; do echo "$i:" ; grep armhf job-cfg/reproducible.yaml |grep build.sh|grep $i ; echo ; done
- job-template:
defaults: reproducible_builder
name: '{name}_builder_armhf_1'
@@ -772,6 +784,12 @@
my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
my_node: 'odxu4'
+ - '{name}_maintenance_armhf_wbd0':
+ my_description: 'Do some maintenance: check for old directories laying around, do backups, update pbuilder and schroots, etc.'
+ my_timed: '5 0,3,6,9,12,15,18,21 * * *'
+ my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
+ my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
+ my_node: 'wbd0'
- '{name}_maintenance_amd64_profitbricks1':
my_description: 'Do some maintenance: check for old directories laying around, do backups, update pbuilder and schroots, etc.'
my_timed: '5 0,3,6,9,12,15,18,21 * * *'
@@ -832,6 +850,12 @@
my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
my_node: 'odxu4'
+ - '{name}_setup_pbuilder_unstable_armhf_wbd0':
+ my_description: 'Setup pbuilder for reproducible builds of packages from unstable as described in https://wiki.debian.org/ReproducibleBuilds#Usage_example'
+ my_timed: '42 7 * * *'
+ my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
+ my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
+ my_node: 'wbd0'
- '{name}_setup_pbuilder_testing_amd64_profitbricks1':
my_description: 'Setup pbuilder for reproducible builds of packages from testing as described in https://wiki.debian.org/ReproducibleBuilds#Usage_example'
my_timed: '23 7 * * *'
@@ -982,6 +1006,12 @@
my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
my_node: 'odxu4'
+ - '{name}_setup_schroot_unstable_armhf_wbd0':
+ my_description: 'Setup unstable schroot for fetching source packages for the builder jobs.'
+ my_timed: '42 1 * * *'
+ my_shell: '/srv/jenkins/bin/jenkins_master_wrapper.sh'
+ my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org'
+ my_node: 'wbd0'
- '{name}_setup_schroot_testing_amd64_jenkins':
my_description: 'Setup testing schroot for fetching source packages for the builder jobs.'
my_timed: '42 1 * * *'