[Qa-jenkins-scm] [Git][qa/jenkins.debian.net][master] 2 commits: improve boilerplate comment for tests.reproducible-builds.org
Holger Levsen
gitlab at salsa.debian.org
Thu Feb 27 00:54:39 GMT 2020
Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net
Commits:
090e452b by Holger Levsen at 2020-02-27T01:51:23+01:00
improve boilerplate comment for tests.reproducible-builds.org
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
9ed60223 by Holger Levsen at 2020-02-27T01:54:20+01:00
reproducible Debian: allow this rsync
Signed-off-by: Holger Levsen <holger at layer-acht.org>
- - - - -
22 changed files:
- bin/jenkins_node_wrapper.sh
- bin/reproducible_blacklist.sh
- bin/reproducible_build.sh
- bin/reproducible_cleanup_nodes.sh
- bin/reproducible_compare_Debian_sha1sums.sh
- bin/reproducible_coreboot.sh
- bin/reproducible_create_meta_pkg_sets.sh
- bin/reproducible_freebsd.sh
- bin/reproducible_html_builtin-pho.sh
- bin/reproducible_html_dashboard.sh
- bin/reproducible_html_nodes_info.sh
- bin/reproducible_html_repository_comparison.sh
- bin/reproducible_html_rsync_builtin-pho.sh
- bin/reproducible_html_rsync_remote_results.sh
- bin/reproducible_maintenance.sh
- bin/reproducible_netbsd.sh
- bin/reproducible_node_health_check.sh
- bin/reproducible_nodes_info.sh
- bin/reproducible_openwrt.sh
- bin/reproducible_setup_pbuilder.sh
- bin/reproducible_system_health.sh
- bin/reproducible_worker.sh
Changes:
=====================================
bin/jenkins_node_wrapper.sh
=====================================
@@ -107,10 +107,8 @@ elif [[ "$*" =~ ^rsync\ --server\ .*\ \.\ /var/lib/jenkins/userContent/reproduci
# allow to push buildinfo files from coccia
# FIXME: limit this to pb7
exec rsync --server "$3" . "$5" ; croak "Exec failed";
-elif [[ "$*" =~ ^rsync\ --server\ .*\ \.\ /var/lib/jenkins/userContent/reproducible/debian/ ]] ; then
- # allow to push built-inpho stats from pb7 to jenkins
- # FIXME: limit this
- exec rsync --server "$3" . "$5" ; croak "Exec failed";
+elif [[ "$*" =~ ^rsync\ --server\ --sender\ .*\ \.\ /var/lib/jenkins/userContent/reproducible/debian/ ]] ; then
+ exec rsync --server "$4" . "$6" ; croak "Exec failed";
elif [[ "$*" =~ ^mkdir\ -p\ /srv/d-i/isos.* ]] ; then
exec mkdir -p "$3" ; croak "Exec failed";
elif [[ "$*" =~ ^rm\ -r\ /srv/reproducible-results/tmp.* ]] ; then
=====================================
bin/reproducible_blacklist.sh
=====================================
@@ -8,7 +8,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
blacklist_packages() {
=====================================
bin/reproducible_build.sh
=====================================
@@ -15,7 +15,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
set -e
=====================================
bin/reproducible_cleanup_nodes.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# only run this on the main node as jenkins
=====================================
bin/reproducible_compare_Debian_sha1sums.sh
=====================================
@@ -10,7 +10,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
set -e
=====================================
bin/reproducible_coreboot.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
set -e
=====================================
bin/reproducible_create_meta_pkg_sets.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# we only generate the meta pkg sets on amd64
=====================================
bin/reproducible_freebsd.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=true
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
cleanup_tmpdirs() {
=====================================
bin/reproducible_html_builtin-pho.sh
=====================================
@@ -8,7 +8,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
#
=====================================
bin/reproducible_html_dashboard.sh
=====================================
@@ -9,7 +9,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
#
=====================================
bin/reproducible_html_nodes_info.sh
=====================================
@@ -11,7 +11,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
explain_nodes() {
=====================================
bin/reproducible_html_repository_comparison.sh
=====================================
@@ -8,7 +8,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
VIEW=repositories
=====================================
bin/reproducible_html_rsync_builtin-pho.sh
=====================================
@@ -8,7 +8,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# rsync builtin-pho results from pb7
=====================================
bin/reproducible_html_rsync_remote_results.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# that's all
=====================================
bin/reproducible_maintenance.sh
=====================================
@@ -9,7 +9,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
DIRTY=false
=====================================
bin/reproducible_netbsd.sh
=====================================
@@ -7,7 +7,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
set -e
=====================================
bin/reproducible_node_health_check.sh
=====================================
@@ -9,7 +9,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# to have a list of the nodes running in the future
=====================================
bin/reproducible_nodes_info.sh
=====================================
@@ -11,7 +11,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
TARGET_DIR=/srv/reproducible-results/node-information/
=====================================
bin/reproducible_openwrt.sh
=====================================
@@ -14,7 +14,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
set -e
=====================================
bin/reproducible_setup_pbuilder.sh
=====================================
@@ -9,7 +9,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# support different suites
=====================================
bin/reproducible_system_health.sh
=====================================
@@ -17,7 +17,7 @@
DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
# we fail hard
set -e
=====================================
bin/reproducible_worker.sh
=====================================
@@ -18,7 +18,7 @@ DEBUG=false
. /srv/jenkins/bin/common-functions.sh
common_init "$@"
-# common code defining db access
+# common code for tests.reproducible-builds.org
. /srv/jenkins/bin/reproducible_common.sh
notify_log_of_failure() {
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/3fc5f0d3327b29be62b77389fdfb8f2842fb1fc1...9ed60223e6775e700400435d74886e3369b95ad6
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/compare/3fc5f0d3327b29be62b77389fdfb8f2842fb1fc1...9ed60223e6775e700400435d74886e3369b95ad6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/qa-jenkins-scm/attachments/20200227/7f3703ba/attachment-0001.html>
More information about the Qa-jenkins-scm
mailing list