From gitlab at salsa.debian.org Tue Nov 5 00:25:46 2019
From: gitlab at salsa.debian.org (Vagrant Cascadian)
Date: Tue, 05 Nov 2019 00:25:46 +0000
Subject: [Qa-jenkins-scm] [Git][qa/jenkins.debian.net][master] reproducible:
Reduce parallelism on armhf systems with a lot of cores
Message-ID: <5dc0c18a2f7ea_1d73fbea494cd3c3972b2@godard.mail>
Vagrant Cascadian pushed to branch master at Debian QA / jenkins.debian.net
Commits:
620fa54d by Vagrant Cascadian at 2019-11-05T00:24:32Z
reproducible: Reduce parallelism on armhf systems with a lot of cores
to reduce swapping on highly parallel builds. Also ensure parallelism
for armhf is an odd number on first build, and even on second build.
- - - - -
2 changed files:
- bin/reproducible_build.sh
- bin/reproducible_common.sh
Changes:
=====================================
bin/reproducible_build.sh
=====================================
@@ -568,6 +568,15 @@ first_build() {
echo "Date: $(date)"
echo "Date UTC: $(date -u)"
echo "============================================================================="
+ if [ "${ARCH}" = "armhf" ]; then
+ # Reduce parallelism on armhf systems with a lot of cores to
+ # reduce swapping on highly parallel builds. Also ensure first
+ # build is always an odd number of CPUs for good measure.
+ case $NUM_CPU in
+ 2|4) NUM_CPU=3 ;;
+ *) NUM_CPU=5 ;;
+ esac
+ fi
local TMPCFG=$(mktemp -t pbuilderrc_XXXX --tmpdir=$TMPDIR)
cat > "$TMPCFG" << EOF
BUILDUSERID=1111
@@ -625,7 +634,15 @@ second_build() {
echo "============================================================================="
set -x
local TMPCFG=$(mktemp -t pbuilderrc_XXXX --tmpdir=$TMPDIR)
- NEW_NUM_CPU=$NUM_CPU # on amd64+i386 we vary this based on node choices (by design), on armhf only sometimes.
+ # on amd64+i386 we vary this based on node choices (by design)
+ if [ "${ARCH}" = "armhf" ]; then
+ # Reduce parallelism on armhf systems with a lot of cores to
+ # reduce swapping on highly parallel builds. Keep second build
+ # with even number of cores.
+ case $NUM_CPU in
+ 8) NUM_CPU=6 ;;
+ esac
+ fi
# differ locale+language depending on the architecture (mostly for readability by different people…)
case $ARCH in
armhf) locale=it_CH
=====================================
bin/reproducible_common.sh
=====================================
@@ -494,7 +494,7 @@ write_variation_table() {
write_page "
build path | /build/1st/\$pkg-\$ver (not varied for stretch/buster) | /build/2/\$pkg-\$ver/2nd (not varied for stretch/buster) |
"
write_page "user's login shell | /bin/sh | /bin/bash |
"
write_page "user's GECOS | first user,first room,first work-phone,first home-phone,first other | second user,second room,second work-phone,second home-phone,second other |
"
- write_page "env DEB_BUILD_OPTIONS | DEB_BUILD_OPTIONS=\"parallel=XXX\" XXX on amd64: 16 or 15 XXX on i386: 10 or 9 XXX on armhf: 8, 4 or 2 | DEB_BUILD_OPTIONS=\"parallel=YYY\" YYY on amd64: 16 or 15 (!= the first build) YYY on i386: 10 or 9 (!= the first build) YYY is the same as XXX on arm64 YYY on armhf: 8, 4, or 2 (not varied systematically) |
"
+ write_page "env DEB_BUILD_OPTIONS | DEB_BUILD_OPTIONS=\"parallel=XXX\" XXX on amd64: 16 or 15 XXX on i386: 10 or 9 XXX on armhf: 5 or 3 | DEB_BUILD_OPTIONS=\"parallel=YYY\" YYY on amd64: 16 or 15 (!= the first build) YYY on i386: 10 or 9 (!= the first build) YYY is the same as XXX on arm64 YYY on armhf: 2, 4, or 6 |
"
write_page "UTS namespace | shared with the host | modified using /usr/bin/unshare --uts |
"
elif [ "$1" = "Arch Linux" ] ; then
write_page "env USER | jenkins | build 2 |
"
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/commit/620fa54d0201919e900b117407322e162632f7bf
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/commit/620fa54d0201919e900b117407322e162632f7bf
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From gitlab at salsa.debian.org Tue Nov 5 00:55:26 2019
From: gitlab at salsa.debian.org (Vagrant Cascadian)
Date: Tue, 05 Nov 2019 00:55:26 +0000
Subject: [Qa-jenkins-scm] [Git][qa/jenkins.debian.net][master] reproducible:
Ensure authorized_keys are processed in the correct
Message-ID: <5dc0c87ec27d8_1d72b27c1d4be58400797@godard.mail>
Vagrant Cascadian pushed to branch master at Debian QA / jenkins.debian.net
Commits:
0316d461 by Vagrant Cascadian at 2019-11-05T00:54:29Z
reproducible: Ensure authorized_keys are processed in the correct
directory regardless of where it is run from.
- - - - -
1 changed file:
- update_jdn.sh
Changes:
=====================================
update_jdn.sh
=====================================
@@ -133,7 +133,8 @@ u_shell['jenkins-adm']='/bin/bash'
# get the users out of the user_host_groups array's index
users=$(for i in ${!user_host_groups[@]}; do echo ${i%,*} ; done | sort -u)
-( $UP2DATE && [ -z "$(find authorized_keys -newer $0)" ] ) || for user in ${users}; do
+( $UP2DATE && [ -z "$(find $BASEDIR/authorized_keys -newer $0)" ] ) || for user in ${users}; do
+ cd $BASEDIR
# -v is a bashism to check for set variables, used here to see if this user is active on this host
if [ ! -v user_host_groups["$user","$HOSTNAME"] ] && [ ! -v user_host_groups["$user",'*'] ] && [ ! -v user_host_groups["$user","$DPKG_ARCH"] ] ; then
continue
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/commit/0316d46185dd883a7c453148341b9b10d8aa6708
--
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/commit/0316d46185dd883a7c453148341b9b10d8aa6708
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_arm64_codethink10 #967
In-Reply-To: <1805186315.66.1572690276676.JavaMail.jenkins@jenkins>
References: <1805186315.66.1572690276676.JavaMail.jenkins@jenkins>
Message-ID: <2028560258.5.1572960420833.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_setup_pbuilder_unstable_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins8750787139588474811.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:47 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_arm64_codethink10 #968
In-Reply-To: <1450842306.64.1572690276640.JavaMail.jenkins@jenkins>
References: <1450842306.64.1572690276640.JavaMail.jenkins@jenkins>
Message-ID: <820214266.4.1572960420833.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_setup_pbuilder_experimental_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins14287843470205924925.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:47 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_arm64_codethink10 #789
In-Reply-To: <1085179711.63.1572690271734.JavaMail.jenkins@jenkins>
References: <1085179711.63.1572690271734.JavaMail.jenkins@jenkins>
Message-ID: <744452601.3.1572960420830.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_setup_pbuilder_stretch_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins696167187676235455.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:47 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_arm64_codethink10 #11094
In-Reply-To: <1740372395.70.1572696364648.JavaMail.jenkins@jenkins>
References: <1740372395.70.1572696364648.JavaMail.jenkins@jenkins>
Message-ID: <920971101.2.1572960420830.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_maintenance_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins17313465083112329985.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:47 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_arm64_codethink10 #788
In-Reply-To: <61385606.65.1572690276668.JavaMail.jenkins@jenkins>
References: <61385606.65.1572690276668.JavaMail.jenkins@jenkins>
Message-ID: <1467768680.1.1572960420827.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_setup_pbuilder_buster_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins265750494964901179.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:54 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:27:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:27:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_arm64_codethink10 #95
In-Reply-To: <1902222364.68.1572690284393.JavaMail.jenkins@jenkins>
References: <1902222364.68.1572690284393.JavaMail.jenkins@jenkins>
Message-ID: <669085903.0.1572960420819.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_setup_pbuilder_bullseye_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins13754479247298985762.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 13:25:47 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_arm64_codethink13 #771
In-Reply-To: <1139526656.59.1572690270042.JavaMail.jenkins@jenkins>
References: <1139526656.59.1572690270042.JavaMail.jenkins@jenkins>
Message-ID: <248488794.6.1572960484778.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_setup_pbuilder_stretch_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins3701184725876240893.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:26:59 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_arm64_codethink13 #99
In-Reply-To: <240496221.57.1572690270042.JavaMail.jenkins@jenkins>
References: <240496221.57.1572690270042.JavaMail.jenkins@jenkins>
Message-ID: <1776714718.7.1572960484794.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_setup_pbuilder_bullseye_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins3421920912232098809.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:26:52 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_arm64_codethink13 #1011
In-Reply-To: <170773266.61.1572690270045.JavaMail.jenkins@jenkins>
References: <170773266.61.1572690270045.JavaMail.jenkins@jenkins>
Message-ID: <1316679926.9.1572960484910.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_setup_pbuilder_experimental_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins10292037395228903070.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:26:59 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_arm64_codethink13 #808
In-Reply-To: <231994453.62.1572690270125.JavaMail.jenkins@jenkins>
References: <231994453.62.1572690270125.JavaMail.jenkins@jenkins>
Message-ID: <2047936519.8.1572960484817.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_setup_pbuilder_buster_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins17179255355220819615.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:26:52 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:15 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:15 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_arm64_codethink13 #10710
In-Reply-To: <1834009827.71.1572696364683.JavaMail.jenkins@jenkins>
References: <1834009827.71.1572696364683.JavaMail.jenkins@jenkins>
Message-ID: <989727381.11.1572960495144.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_maintenance_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins14181822236300172799.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:27:12 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:14 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:14 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_arm64_codethink13 #1011
In-Reply-To: <1002889435.60.1572690270043.JavaMail.jenkins@jenkins>
References: <1002889435.60.1572690270043.JavaMail.jenkins@jenkins>
Message-ID: <1997961171.10.1572960494992.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_setup_pbuilder_unstable_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins17301733530114163768.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 13:27:12 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:28:24 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:28:24 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3415
In-Reply-To: <2095079833.129.1572761209371.JavaMail.jenkins@jenkins>
References: <2095079833.129.1572761209371.JavaMail.jenkins@jenkins>
Message-ID: <1951865385.12.1572960504515.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:29:11 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:29:11 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: d-i_check_jenkins_jobs
#2563
In-Reply-To: <1341836907.89.1572740582964.JavaMail.jenkins@jenkins>
References: <1341836907.89.1572740582964.JavaMail.jenkins@jenkins>
Message-ID: <2068565358.13.1572960551116.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
[workspace] $ /bin/sh -xe /tmp/jenkins3040475585801587494.sh
+ /srv/jenkins/bin/d-i_check_jobs.sh cs:en:eu:pt_BR
====================================================================================
Tue 5 Nov 13:29:06 UTC 2019 - running /srv/jenkins/bin/d-i_check_jobs.sh (for job d-i_check_jenkins_jobs) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/d-i_check_jobs.sh,
has been called using "cs:en:eu:pt_BR " as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue 5 Nov 13:29:06 UTC 2019 - start running "/srv/jenkins/bin/d-i_check_jobs.sh" (md5sum 17eb8962ddb4a37577b1be4db1bc0d57) as "/tmp/jenkins-script-7VU5hpx3" on jenkins.
Scanning https://salsa.debian.org/installer-team/d-i/raw/master/.mrconfig for referred git repos which have no jenkins job associated.
Checking if there are jenkins jobs for which there is no repo in https://salsa.debian.org/installer-team/d-i/raw/master/.mrconfig - or only a deleted one.
Ok: Job d-i_build_anna for https://salsa.debian.org/installer-team/anna found.
Ok: Job d-i_build_apt-setup for https://salsa.debian.org/installer-team/apt-setup found.
Ok: Job d-i_build_arcboot-installer for https://salsa.debian.org/installer-team/arcboot-installer found.
Ok: Job d-i_build_babelbox for https://salsa.debian.org/installer-team/babelbox found.
Ok: Job d-i_build_base-installer for https://salsa.debian.org/installer-team/base-installer found.
Ok: Job d-i_build_bterm-unifont for https://salsa.debian.org/installer-team/bterm-unifont found.
Ok: Job d-i_build_busybox for https://salsa.debian.org/installer-team/busybox found.
Ok: Job d-i_build_cdebconf for https://salsa.debian.org/installer-team/cdebconf found.
Ok: Job d-i_build_cdebconf-entropy for https://salsa.debian.org/installer-team/cdebconf-entropy found.
Ok: Job d-i_build_cdebconf-terminal for https://salsa.debian.org/installer-team/cdebconf-terminal found.
Ok: Job d-i_build_cdrom-checker for https://salsa.debian.org/installer-team/cdrom-checker found.
Ok: Job d-i_build_cdrom-detect for https://salsa.debian.org/installer-team/cdrom-detect found.
Ok: Job d-i_build_cdrom-retriever for https://salsa.debian.org/installer-team/cdrom-retriever found.
Ok: Job d-i_build_choose-mirror for https://salsa.debian.org/installer-team/choose-mirror found.
Ok: Job d-i_build_clock-setup for https://salsa.debian.org/installer-team/clock-setup found.
Ok: Job d-i_build_console-setup for https://salsa.debian.org/installer-team/console-setup found.
Ok: Job d-i_build_debian-installer for https://salsa.debian.org/installer-team/debian-installer found.
Ok: Job d-i_build_debian-installer-launcher for https://salsa.debian.org/installer-team/debian-installer-launcher found.
Ok: Job d-i_build_debian-installer-netboot-images for https://salsa.debian.org/installer-team/debian-installer-netboot-images found.
Ok: Job d-i_build_debian-installer-utils for https://salsa.debian.org/installer-team/debian-installer-utils found.
Ok: Job d-i_build_debootstrap for https://salsa.debian.org/installer-team/debootstrap found.
Ok: Job d-i_build_desktop-chooser for https://salsa.debian.org/installer-team/desktop-chooser found.
Ok: Job d-i_build_devicetype-detect for https://salsa.debian.org/installer-team/devicetype-detect found.
Ok: Job d-i_build_dh-di for https://salsa.debian.org/installer-team/dh-di found.
Ok: Job d-i_build_efi-reader for https://salsa.debian.org/installer-team/efi-reader found.
Ok: Job d-i_build_elilo-installer for https://salsa.debian.org/installer-team/elilo-installer found.
Ok: Job d-i_build_finish-install for https://salsa.debian.org/installer-team/finish-install found.
Ok: Job d-i_build_flash-kernel for https://salsa.debian.org/installer-team/flash-kernel found.
Ok: Job d-i_build_grub-installer for https://salsa.debian.org/installer-team/grub-installer found.
Ok: Job d-i_build_hw-detect for https://salsa.debian.org/installer-team/hw-detect found.
Ok: Job d-i_build_installation-locale for https://salsa.debian.org/installer-team/installation-locale found.
Ok: Job d-i_build_installation-report for https://salsa.debian.org/installer-team/installation-report found.
Ok: Job d-i_build_iso-scan for https://salsa.debian.org/installer-team/iso-scan found.
Ok: Job d-i_build_kbd-chooser for https://salsa.debian.org/installer-team/kbd-chooser found.
Ok: Job d-i_build_kernel-wedge for https://salsa.debian.org/installer-team/kernel-wedge found.
Ok: Job d-i_build_kickseed for https://salsa.debian.org/installer-team/kickseed found.
Ok: Job d-i_build_libdebian-installer for https://salsa.debian.org/installer-team/libdebian-installer found.
Ok: Job d-i_build_lilo-installer for https://salsa.debian.org/installer-team/lilo-installer found.
Ok: Job d-i_build_live-installer for https://salsa.debian.org/installer-team/live-installer found.
Ok: Job d-i_build_localechooser for https://salsa.debian.org/installer-team/localechooser found.
Ok: Job d-i_build_lowmem for https://salsa.debian.org/installer-team/lowmem found.
Ok: Job d-i_build_lvmcfg for https://salsa.debian.org/installer-team/lvmcfg found.
Ok: Job d-i_build_main-menu for https://salsa.debian.org/installer-team/main-menu found.
Ok: Job d-i_build_mdcfg for https://salsa.debian.org/installer-team/mdcfg found.
Ok: Job d-i_build_media-retriever for https://salsa.debian.org/installer-team/media-retriever found.
Ok: Job d-i_build_mklibs for https://salsa.debian.org/installer-team/mklibs found.
Ok: Job d-i_build_mountmedia for https://salsa.debian.org/installer-team/mountmedia found.
Ok: Job d-i_build_net-retriever for https://salsa.debian.org/installer-team/net-retriever found.
Ok: Job d-i_build_netboot-assistant for https://salsa.debian.org/installer-team/netboot-assistant found.
Ok: Job d-i_build_netcfg for https://salsa.debian.org/installer-team/netcfg found.
Ok: Job d-i_build_network-console for https://salsa.debian.org/installer-team/network-console found.
Ok: Job d-i_build_nobootloader for https://salsa.debian.org/installer-team/nobootloader found.
Ok: Job d-i_build_oldsys-preseed for https://salsa.debian.org/installer-team/oldsys-preseed found.
Ok: Job d-i_build_os-prober for https://salsa.debian.org/installer-team/os-prober found.
Ok: Job d-i_build_partconf for https://salsa.debian.org/installer-team/partconf found.
Ok: Job d-i_build_partman-auto for https://salsa.debian.org/installer-team/partman-auto found.
Ok: Job d-i_build_partman-auto-crypto for https://salsa.debian.org/installer-team/partman-auto-crypto found.
Ok: Job d-i_build_partman-auto-lvm for https://salsa.debian.org/installer-team/partman-auto-lvm found.
Ok: Job d-i_build_partman-auto-raid for https://salsa.debian.org/installer-team/partman-auto-raid found.
Ok: Job d-i_build_partman-base for https://salsa.debian.org/installer-team/partman-base found.
Ok: Job d-i_build_partman-basicfilesystems for https://salsa.debian.org/installer-team/partman-basicfilesystems found.
Ok: Job d-i_build_partman-basicmethods for https://salsa.debian.org/installer-team/partman-basicmethods found.
Ok: Job d-i_build_partman-btrfs for https://salsa.debian.org/installer-team/partman-btrfs found.
Ok: Job d-i_build_partman-crypto for https://salsa.debian.org/installer-team/partman-crypto found.
Ok: Job d-i_build_partman-efi for https://salsa.debian.org/installer-team/partman-efi found.
Ok: Job d-i_build_partman-ext3 for https://salsa.debian.org/installer-team/partman-ext3 found.
Ok: Job d-i_build_partman-iscsi for https://salsa.debian.org/installer-team/partman-iscsi found.
Ok: Job d-i_build_partman-jfs for https://salsa.debian.org/installer-team/partman-jfs found.
Ok: Job d-i_build_partman-lvm for https://salsa.debian.org/installer-team/partman-lvm found.
Ok: Job d-i_build_partman-md for https://salsa.debian.org/installer-team/partman-md found.
Ok: Job d-i_build_partman-multipath for https://salsa.debian.org/installer-team/partman-multipath found.
Ok: Job d-i_build_partman-nbd for https://salsa.debian.org/installer-team/partman-nbd found.
Ok: Job d-i_build_partman-newworld for https://salsa.debian.org/installer-team/partman-newworld found.
Ok: Job d-i_build_partman-partitioning for https://salsa.debian.org/installer-team/partman-partitioning found.
Ok: Job d-i_build_partman-prep for https://salsa.debian.org/installer-team/partman-prep found.
Ok: Job d-i_build_partman-swapfile for https://salsa.debian.org/installer-team/partman-swapfile found.
Ok: Job d-i_build_partman-target for https://salsa.debian.org/installer-team/partman-target found.
Ok: Job d-i_build_partman-ufs for https://salsa.debian.org/installer-team/partman-ufs found.
Ok: Job d-i_build_partman-xfs for https://salsa.debian.org/installer-team/partman-xfs found.
Ok: Job d-i_build_partman-zfs for https://salsa.debian.org/installer-team/partman-zfs found.
Ok: Job d-i_build_pkgsel for https://salsa.debian.org/installer-team/pkgsel found.
Ok: Job d-i_build_prep-installer for https://salsa.debian.org/installer-team/prep-installer found.
Ok: Job d-i_build_preseed for https://salsa.debian.org/installer-team/preseed found.
Ok: Job d-i_build_quik-installer for https://salsa.debian.org/installer-team/quik-installer found.
Ok: Job d-i_build_rescue for https://salsa.debian.org/installer-team/rescue found.
Ok: Job d-i_build_rootskel for https://salsa.debian.org/installer-team/rootskel found.
Ok: Job d-i_build_rootskel-gtk for https://salsa.debian.org/installer-team/rootskel-gtk found.
Ok: Job d-i_build_s390-dasd for https://salsa.debian.org/installer-team/s390-dasd found.
Ok: Job d-i_build_s390-netdevice for https://salsa.debian.org/installer-team/s390-netdevice found.
Ok: Job d-i_build_s390-sysconfig-writer for https://salsa.debian.org/installer-team/s390-sysconfig-writer found.
Ok: Job d-i_build_s390-zfcp for https://salsa.debian.org/installer-team/s390-zfcp found.
Ok: Job d-i_build_tzsetup for https://salsa.debian.org/installer-team/tzsetup found.
Ok: Job d-i_build_udpkg for https://salsa.debian.org/installer-team/udpkg found.
Ok: Job d-i_build_usb-discover for https://salsa.debian.org/installer-team/usb-discover found.
Ok: Job d-i_build_user-setup for https://salsa.debian.org/installer-team/user-setup found.
Ok: Job d-i_build_win32-loader for https://salsa.debian.org/installer-team/win32-loader found.
Ok: Job d-i_build_yaboot-installer for https://salsa.debian.org/installer-team/yaboot-installer found.
Ok: Job d-i_build_zipl-installer for https://salsa.debian.org/installer-team/zipl-installer found.
The manual for the language eu has been disabled.
Found build job 'd-i_manual_ca_pdf_po2xml'.
Found build job 'd-i_manual_ca_html_po2xml'.
Found build job 'd-i_manual_cs_pdf'.
Found build job 'd-i_manual_cs_html'.
Found build job 'd-i_manual_da_pdf_po2xml'.
Found build job 'd-i_manual_da_html_po2xml'.
Found build job 'd-i_manual_de_pdf_po2xml'.
Found build job 'd-i_manual_de_html_po2xml'.
Found build job 'd-i_manual_el_pdf_po2xml'.
Found build job 'd-i_manual_el_html_po2xml'.
Found build job 'd-i_manual_es_pdf_po2xml'.
Found build job 'd-i_manual_es_html_po2xml'.
Found build job 'd-i_manual_fi_pdf_po2xml'.
Found build job 'd-i_manual_fi_html_po2xml'.
Found build job 'd-i_manual_fr_pdf_po2xml'.
Found build job 'd-i_manual_fr_html_po2xml'.
Found build job 'd-i_manual_hu_pdf_po2xml'.
Found build job 'd-i_manual_hu_html_po2xml'.
Found build job 'd-i_manual_it_pdf_po2xml'.
Found build job 'd-i_manual_it_html_po2xml'.
Found build job 'd-i_manual_ja_pdf_po2xml'.
Found build job 'd-i_manual_ja_html_po2xml'.
Found build job 'd-i_manual_ko_pdf_po2xml'.
Found build job 'd-i_manual_ko_html_po2xml'.
Warning: No build job 'd-i_manual_nb_pdf_po2xml'.
Warning: No build job 'd-i_manual_nb_html_po2xml'.
Found build job 'd-i_manual_nl_pdf_po2xml'.
Found build job 'd-i_manual_nl_html_po2xml'.
Found build job 'd-i_manual_nn_pdf_po2xml'.
Found build job 'd-i_manual_nn_html_po2xml'.
Found build job 'd-i_manual_pt_pdf_po2xml'.
Found build job 'd-i_manual_pt_html_po2xml'.
Found build job 'd-i_manual_ro_pdf_po2xml'.
Found build job 'd-i_manual_ro_html_po2xml'.
Found build job 'd-i_manual_ru_pdf_po2xml'.
Found build job 'd-i_manual_ru_html_po2xml'.
Found build job 'd-i_manual_sv_pdf_po2xml'.
Found build job 'd-i_manual_sv_html_po2xml'.
Found build job 'd-i_manual_tl_pdf_po2xml'.
Found build job 'd-i_manual_tl_html_po2xml'.
Warning: No build job 'd-i_manual_uk_pdf_po2xml'.
Warning: No build job 'd-i_manual_uk_html_po2xml'.
Found build job 'd-i_manual_vi_pdf_po2xml'.
Found build job 'd-i_manual_vi_html_po2xml'.
Found build job 'd-i_manual_zh_CN_pdf_po2xml'.
Found build job 'd-i_manual_zh_CN_html_po2xml'.
Found build job 'd-i_manual_zh_TW_pdf_po2xml'.
Found build job 'd-i_manual_zh_TW_html_po2xml'.
__ __ _ _ _ _ _
| \/ (_)___ ___(_)_ __ __ _ (_) ___ | |__ ___| |
| |\/| | / __/ __| | '_ \ / _` | | |/ _ \| '_ \/ __| |
| | | | \__ \__ \ | | | | (_| | | | (_) | |_) \__ \_|
|_| |_|_|___/___/_|_| |_|\__, | _/ |\___/|_.__/|___(_)
|___/ |__/
Add these job templates to job-cfg/d-i.yaml:
- job-template:
defaults: d-i-manual-pdf_po2xml-po2xml
name: '{name}_manual_nb_pdf_po2xml'
- job-template:
defaults: d-i-manual-html_po2xml-po2xml
name: '{name}_manual_nb_html_po2xml'
- job-template:
defaults: d-i-manual-pdf_po2xml-po2xml
name: '{name}_manual_uk_pdf_po2xml'
- job-template:
defaults: d-i-manual-html_po2xml-po2xml
name: '{name}_manual_uk_html_po2xml'
Append this to the project definition in job-cfg/d-i.yaml:
- '{name}_manual_nb_pdf_po2xml':
lang: 'nb'
languagename: 'FIXME: nb'
- '{name}_manual_nb_html_po2xml':
lang: 'nb'
languagename: 'FIXME: nb'
- '{name}_manual_uk_pdf_po2xml':
lang: 'uk'
languagename: 'FIXME: uk'
- '{name}_manual_uk_html_po2xml':
lang: 'uk'
languagename: 'FIXME: uk'
Tue 5 Nov 13:29:10 UTC 2019 - /srv/jenkins/bin/d-i_check_jobs.sh stopped running as /tmp/jenkins-script-7VU5hpx3, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:29:53 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:29:53 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: reproducible_netbsd #373
Message-ID: <134386619.15.1572960593721.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 2.46 MB...]
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking whether cc understands -c and -o together... yes
checking for library containing strerror... none required
checking for a BSD-compatible install... /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/sparc64--netbsd-install -c -p -r
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... (cached) /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/sparc64--netbsd-install -d -p
checking for gawk... /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/nbawk
checking whether /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/nbmake sets $(MAKE)... yes
checking for style of include used by /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/nbmake... GNU
checking whether /srv/workspace/chroots/rbuild-netbsd-build-RxDHmStS/netbsd/obj/tooldir.Linux-4.19.0-6-amd64-x86_64/bin/nbmake supports nested variables... yes
checking dependency style of cc... gcc3
checking for x86_64-pc-linux-gnu-ar... ar
checking for x86_64-pc-linux-gnu-ranlib... ranlib
checking for x86_64-pc-linux-gnu-gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking whether cc understands -c and -o together... (cached) yes
checking how to run the C preprocessor... cc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by cc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for x86_64-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-pc-linux-gnu-ar... (cached) ar
checking for x86_64-pc-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-pc-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from cc object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for dlfcn.h... (cached) yes
checking for windows.h... no
checking for library containing dlsym... -ldl
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... no
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for long double... yes
checking for long long... yes
checking size of long long... 8
checking size of void *... 8
checking size of long... 8
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... yes
checking for uintptr_t... yes
checking for int_least32_t... yes
checking for int_fast32_t... yes
checking for uint64_t... yes
checking what to include in bfd_stdint.h... stdint.h (already complete)
checking whether time.h and sys/time.h may both be included... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether string.h and strings.h may both be included... yes
checking for fcntl... yes
checking for getpagesize... yes
checking for setitimer... yes
checking for sysconf... yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking for fileno... yes
checking for strtoull... yes
checking for getrlimit... yes
checking whether basename is declared... yes
checking whether ftello is declared... yes
checking whether ftello64 is declared... yes
checking whether fseeko is declared... yes
checking whether fseeko64 is declared... yes
checking whether ffs is declared... yes
checking whether free is declared... yes
checking whether getenv is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... yes
checking whether asprintf is declared... yes
checking whether vasprintf is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build171-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins5555221278069439595.sh
checking whether strnlen is declared... yes
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build171-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
checking compiler support for hidden visibility... yes
checking linker --as-needed support... yes
checking for cos in -lm... yes
checking for gcc version with buggy 64-bit support... no
checking for ftello... yes
checking for ftello64... yes
checking for fseeko... yes
checking for fseeko64... yes
checking for fopen64... yes
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_netbsd #373
checking size of off_t... 8
checking file_ptr type... BFD_HOST_64_BIT
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for madvise... yes
checking for mprotect... yes
configure: updating cache ./config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
From jenkins at jenkins.debian.net Tue Nov 5 13:29:53 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:29:53 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_schroot_unstable_diffoscope_amd64_osuosl171 #266
Message-ID: <2020357750.14.1572960593720.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 172.12 KB...]
Preparing to unpack .../046-fonts-dejavu-core_2.37-1_all.deb ...
Unpacking fonts-dejavu-core (2.37-1) ...
Selecting previously unselected package ttf-bitstream-vera.
Preparing to unpack .../047-ttf-bitstream-vera_1.10-8_all.deb ...
Unpacking ttf-bitstream-vera (1.10-8) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../048-fontconfig-config_2.13.1-2_all.deb ...
Unpacking fontconfig-config (2.13.1-2) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../049-libfontconfig1_2.13.1-2+b1_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-2+b1) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../050-libpixman-1-0_0.36.0-1_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.36.0-1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../051-libxau6_1%3a1.0.8-1+b2_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.8-1+b2) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../052-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../053-libxcb1_1.13.1-2_amd64.deb ...
Unpacking libxcb1:amd64 (1.13.1-2) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../054-libx11-data_2%3a1.6.8-1_all.deb ...
Unpacking libx11-data (2:1.6.8-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../055-libx11-6_2%3a1.6.8-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.6.8-1) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../056-libxcb-render0_1.13.1-2_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.13.1-2) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../057-libxcb-shm0_1.13.1-2_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.13.1-2) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../058-libxext6_2%3a1.3.3-1+b2_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.3-1+b2) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../059-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../060-libcairo2_1.16.0-4_amd64.deb ...
Unpacking libcairo2:amd64 (1.16.0-4) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../061-libjpeg62-turbo_1%3a1.5.2-2+b1_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:1.5.2-2+b1) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../062-libjbig0_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../063-libwebp6_0.6.1-2+b1_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2+b1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../064-libtiff5_4.0.10+git191003-1_amd64.deb ...
Unpacking libtiff5:amd64 (4.0.10+git191003-1) ...
Selecting previously unselected package libicu63:amd64.
Preparing to unpack .../065-libicu63_63.2-2_amd64.deb ...
Unpacking libicu63:amd64 (63.2-2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../066-libxml2_2.9.4+dfsg1-7+b3_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+b3) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../067-shared-mime-info_1.10-1_amd64.deb ...
Unpacking shared-mime-info (1.10-1) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../068-libgdk-pixbuf2.0-common_2.40.0+dfsg-1_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.40.0+dfsg-1) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
Preparing to unpack .../069-libgdk-pixbuf2.0-0_2.40.0+dfsg-1_amd64.deb ...
Unpacking libgdk-pixbuf2.0-0:amd64 (2.40.0+dfsg-1) ...
Selecting previously unselected package libgsf-1-common.
Preparing to unpack .../070-libgsf-1-common_1.14.46-1_all.deb ...
Unpacking libgsf-1-common (1.14.46-1) ...
Selecting previously unselected package libgsf-1-114:amd64.
Preparing to unpack .../071-libgsf-1-114_1.14.46-1_amd64.deb ...
Unpacking libgsf-1-114:amd64 (1.14.46-1) ...
Selecting previously unselected package hicolor-icon-theme.
Preparing to unpack .../072-hicolor-icon-theme_0.17-2_all.deb ...
Unpacking hicolor-icon-theme (0.17-2) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../073-gtk-update-icon-cache_3.24.12-1_amd64.deb ...
No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
Unpacking gtk-update-icon-cache (3.24.12-1) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../074-libcroco3_0.6.13-1_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.13-1) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../075-fontconfig_2.13.1-2+b1_amd64.deb ...
Unpacking fontconfig (2.13.1-2+b1) ...
Selecting previously unselected package libfribidi0:amd64.
Preparing to unpack .../076-libfribidi0_1.0.7-1_amd64.deb ...
Unpacking libfribidi0:amd64 (1.0.7-1) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../077-libthai-data_0.1.28-3_all.deb ...
Unpacking libthai-data (0.1.28-3) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../078-libdatrie1_0.2.12-3_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.12-3) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../079-libthai0_0.1.28-3_amd64.deb ...
Unpacking libthai0:amd64 (0.1.28-3) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../080-libpango-1.0-0_1.42.4-7_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.42.4-7) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../081-libgraphite2-3_1.3.13-11_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.13-11) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../082-libharfbuzz0b_2.6.4-1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (2.6.4-1) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../083-libpangoft2-1.0-0_1.42.4-7_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.42.4-7) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../084-libpangocairo-1.0-0_1.42.4-7_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.42.4-7) ...
Selecting previously unselected package librsvg2-2:amd64.
Preparing to unpack .../085-librsvg2-2_2.44.15-1_amd64.deb ...
Unpacking librsvg2-2:amd64 (2.44.15-1) ...
Selecting previously unselected package librsvg2-common:amd64.
Preparing to unpack .../086-librsvg2-common_2.44.15-1_amd64.deb ...
Unpacking librsvg2-common:amd64 (2.44.15-1) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../087-adwaita-icon-theme_3.34.0-2_all.deb ...
Unpacking adwaita-icon-theme (3.34.0-2) ...
Selecting previously unselected package libatspi2.0-0:amd64.
Preparing to unpack .../088-libatspi2.0-0_2.34.0-3_amd64.deb ...
Unpacking libatspi2.0-0:amd64 (2.34.0-3) ...
Selecting previously unselected package libatk-bridge2.0-0:amd64.
Preparing to unpack .../089-libatk-bridge2.0-0_2.34.1-1_amd64.deb ...
Unpacking libatk-bridge2.0-0:amd64 (2.34.1-1) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Preparing to unpack .../090-libcairo-gobject2_1.16.0-4_amd64.deb ...
Unpacking libcairo-gobject2:amd64 (1.16.0-4) ...
Selecting previously unselected package liblcms2-2:amd64.
Preparing to unpack .../091-liblcms2-2_2.9-4_amd64.deb ...
Unpacking liblcms2-2:amd64 (2.9-4) ...
Selecting previously unselected package libcolord2:amd64.
Preparing to unpack .../092-libcolord2_1.4.4-1_amd64.deb ...
Unpacking libcolord2:amd64 (1.4.4-1) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../093-libavahi-common-data_0.7-4+b1_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.7-4+b1) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../094-libavahi-common3_0.7-4+b1_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.7-4+b1) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../095-libavahi-client3_0.7-4+b1_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.7-4+b1) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../096-libkeyutils1_1.6-6_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.6-6) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../097-libkrb5support0_1.17-6_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.17-6) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../098-libk5crypto3_1.17-6_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.17-6) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../099-libkrb5-3_1.17-6_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.17-6) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../100-libgssapi-krb5-2_1.17-6_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.17-6) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../101-libcups2_2.3.0-6_amd64.deb ...
Unpacking libcups2:amd64 (2.3.0-6) ...
Selecting previously unselected package libepoxy0:amd64.
Preparing to unpack .../102-libepoxy0_1.5.3-0.1_amd64.deb ...
Unpacking libepoxy0:amd64 (1.5.3-0.1) ...
Selecting previously unselected package libjson-glib-1.0-common.
Preparing to unpack .../103-libjson-glib-1.0-common_1.4.4-2_all.deb ...
Unpacking libjson-glib-1.0-common (1.4.4-2) ...
Selecting previously unselected package libjson-glib-1.0-0:amd64.
Preparing to unpack .../104-libjson-glib-1.0-0_1.4.4-2_amd64.deb ...
FATAL: command execution failed
Unpacking libjson-glib-1.0-0:amd64 (1.4.4-2) ...
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build171-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins13895809617816177209.sh
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../105-libbrotli1_1.0.7-4_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.7-4) ...
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build171-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../106-libpsl5_0.20.2-2_amd64.deb ...
Unpacking libpsl5:amd64 (0.20.2-2) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../107-libsqlite3-0_3.30.1-1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.30.1-1) ...
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_setup_schroot_unstable_diffoscope_amd64_osuosl171 #266
From jenkins at jenkins.debian.net Tue Nov 5 13:29:53 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:29:53 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: reproducible_coreboot #394
Message-ID: <413789459.16.1572960593770.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on osuosl-build171-amd64.debian.net (osuosl171 amd64) in workspace /srv/jenkins/pseudo-hosts/osuosl-build171-amd64/workspace/reproducible_coreboot
[reproducible_coreboot] $ /bin/sh -xe /tmp/jenkins11154058760280386605.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ControlSocket /var/lib/jenkins/.ssh/master-jenkins at osuosl-build171-amd64.debian.net:45050 already exists, disabling multiplexing
====================================================================================
Tue 05 Nov 2019 01:25:46 PM UTC - running /srv/jenkins/bin/reproducible_coreboot.sh (for job reproducible_coreboot) on osuosl-build171-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_coreboot.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue 05 Nov 2019 01:25:46 PM UTC - start running "/srv/jenkins/bin/reproducible_coreboot.sh" (md5sum 07df5c65e51b81b42303d4fab0514bca) as "/tmp/jenkins-script-oMkAKtJm" on osuosl-build171-amd64.
=============================================================================
Tue Nov 5 13:25:46 UTC 2019 - Cloning coreboot git repository with submodules.
=============================================================================
Cloning into 'coreboot'...
Submodule '3rdparty/amd_blobs' (https://review.coreboot.org/amd_blobs) registered for path '3rdparty/amd_blobs'
Submodule 'arm-trusted-firmware' (https://review.coreboot.org/arm-trusted-firmware.git) registered for path '3rdparty/arm-trusted-firmware'
Submodule '3rdparty/blobs' (https://review.coreboot.org/blobs.git) registered for path '3rdparty/blobs'
Submodule '3rdparty/chromeec' (https://review.coreboot.org/chrome-ec.git) registered for path '3rdparty/chromeec'
Submodule '3rdparty/ffs' (https://review.coreboot.org/ffs.git) registered for path '3rdparty/ffs'
Submodule '3rdparty/fsp' (https://review.coreboot.org/fsp.git) registered for path '3rdparty/fsp'
Submodule 'intel-microcode' (https://review.coreboot.org/intel-microcode.git) registered for path '3rdparty/intel-microcode'
Submodule 'libgfxinit' (https://review.coreboot.org/libgfxinit.git) registered for path '3rdparty/libgfxinit'
Submodule 'libhwbase' (https://review.coreboot.org/libhwbase.git) registered for path '3rdparty/libhwbase'
Submodule 'opensbi' (https://review.coreboot.org/opensbi.git) registered for path '3rdparty/opensbi'
Submodule 'vboot' (https://review.coreboot.org/vboot.git) registered for path '3rdparty/vboot'
Submodule 'util/nvidia-cbootimage' (https://review.coreboot.org/nvidia-cbootimage.git) registered for path 'util/nvidia/cbootimage'
Skipping submodule '3rdparty/amd_blobs'
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/arm-trusted-firmware'...
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/libhwbase'...
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/util/nvidia/cbootimage'...
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/ffs'...
Skipping submodule '3rdparty/fsp'
Skipping submodule '3rdparty/intel-microcode'
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/libgfxinit'...
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/opensbi'...
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/vboot'...
Skipping submodule '3rdparty/blobs'
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/chromeec'...
Submodule path '3rdparty/arm-trusted-firmware': checked out 'ace23683beb81354d6edbc61c087ab8c384d0631'
Submodule path '3rdparty/chromeec': checked out 'a1afae4e002a3eccd7835ac898259b0690e9e61a'
Submodule path '3rdparty/ffs': checked out '3ec70fbc458e32eef0d0b1de79688b4dc48cbd57'
Submodule path '3rdparty/libgfxinit': checked out 'fe7985f2a0692bc773d470a92ec54d22d3c12e4b'
Submodule path '3rdparty/libhwbase': checked out 'bd0ed91cb985a697033edd9fd62d322aa017e791'
Submodule path '3rdparty/opensbi': checked out 'e561c6303639ed510183da25d3d54555a53371c9'
Submodule path '3rdparty/vboot': checked out 'b2c8984d37e378b2faad170d4ec9b378c0c2b145'
Submodule path 'util/nvidia/cbootimage': checked out '65a6d94dd5f442578551e0a81ecbe5235e673fd4'
Cloning into '/srv/workspace/chroots/rbuild-coreboot-build-rPiGQmEH/coreboot/3rdparty/blobs'...
Submodule path '3rdparty/blobs': checked out '62aa0e0c54295bbb7b1a3e5e73f960bafdb59d04'
This is coreboot 4.10-1384-gacc88f8e66.
commit acc88f8e66c4bee9397347f57a5553bbacbc2377
Author: Arthur Heymans
Date: Sun Oct 20 14:29:59 2019 +0200
drivers/intel/fsp2_0: Hide CONFIG_FSP_CAR
CONFIG_FSP_CAR should not be a user visible option, but depends on the
choice presented in the soc Kconfig.
This also removes the dependencies on ADD_FSP_BINARIES. You need to
included those for other stages too so there is no need to make this
requirement explicit for FSP-T.
Change-Id: Ida32e9c4f5839aef4d4deb7a1c7fabe6335a5d2a
Signed-off-by: Arthur Heymans
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36169
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber
=============================================================================
Tue Nov 5 13:27:14 UTC 2019 - Building cross compilers for i386-elf x86_64-elf armv7a-eabi aarch64-elf mipsel-elf riscv-elf.
=============================================================================
Tue Nov 5 13:27:14 UTC 2019 - Building cross compiler for i386-elf.
[0;34mWelcome to the [0;31mcoreboot[0;34m cross toolchain builder v7385b656c2 (2019-10-27)[0m
Building toolchain using 32 thread(s).
Target architecture is i386-elf
Found compatible Ada compiler, enabling Ada support by default.
Downloading and verifing tarballs ...
* gmp-6.1.2.tar.xz (downloading from https://ftpmirror.gnu.org/gmp/gmp-6.1.2.tar.xz)... [0;31m 0% 2% 5% 7% 10% 13% 15% 18% 21% 23% 26% 28% 31% 34% 36% 39% 42% 44% 47% 49% 52% 55% 57% 60% 63% 65% 68% 71% 73% 76% 78% 81% 84% 86% 89% 92% 94% 97% 99%100%[0m... [1;32mhash verified (9dc6981197a7d92f339192eea974f5eca48fcffe)[0m
* mpfr-4.0.2.tar.xz (downloading from https://ftpmirror.gnu.org/mpfr/mpfr-4.0.2.tar.xz)... [0;31m 0% 3% 7% 10% 14% 17% 21% 24% 28% 31% 35% 39% 42% 46% 49% 53% 56% 60% 63% 67% 71% 74% 78% 81% 85% 88% 92% 95% 99%100%[0m... [1;32mhash verified (52c1f2a4c9a202f46cf3275a8d46b562aa584208)[0m
* mpc-1.1.0.tar.gz (downloading from https://ftpmirror.gnu.org/mpc/mpc-1.1.0.tar.gz)... [0;31m 0% 7% 14% 21% 29% 36% 43% 51% 58% 65% 73% 80% 87% 94%100%[0m... [1;32mhash verified (b019d9e1d27ec5fb99497159d43a3164995de2d0)[0m
* binutils-2.32.tar.xz (downloading from https://ftpmirror.gnu.org/binutils/binutils-2.32.tar.xz)... [0;31m 0% 0% 0% 0% 0% 1% 1% 1% 1% 2% 2% 2% 2% 3% 3% 3% 3% 4% 4% 4% 4% 5% 5% 5% 5% 6% 6% 6% 6% 7% 7% 7% 7% 8% 8% 8% 8% 9% 9% 9% 9% 10% 10% 10% 10% 11% 11% 11% 11% 12% 12% 12% 12% 13% 13% 13% 13% 14% 14% 14% 14% 15% 15% 15% 15% 16% 16% 16% 16% 17% 17% 17% 17% 17% 18% 18% 18% 18% 19% 19% 19% 19% 20% 20% 20% 20% 21% 21% 21% 21% 22% 22% 22% 22% 23% 23% 23% 23% 24% 24% 24% 24% 25% 25% 25% 25% 26% 26% 26% 26% 27% 27% 27% 27% 28% 28% 28% 28% 29% 29% 29% 29% 30% 30% 30% 30% 31% 31% 31% 31% 32% 32% 32% 32% 33% 33% 33% 33% 34% 34% 34% 34% 34% 35% 35% 35% 35% 36% 36% 36% 36% 37% 37% 37% 37% 38% 38% 38% 38% 39% 39% 39% 39% 40% 40% 40% 40% 41% 41% 41% 41% 42% 42% 42% 42% 43% 43% 43% 43% 44% 44% 44% 44% 45% 45% 45% 45% 46% 46% 46% 46% 47% 47% 47% 47% 48% 48% 48% 48% 49% 49% 49% 49% 50% 50% 50% 50% 51% 51% 51% 51% 52% 52% 52% 52% 52% 53% 53% 53% 53% 54% 54% 54% 54% 55% 55% 55% 55% 56% 56% 56% 56% 57% 57% 57% 57% 58% 58% 58% 58% 59% 59% 59% 59% 60% 60% 60% 60% 61% 61% 61% 61% 62% 62% 62% 62% 63% 63% 63% 63% 64% 64% 64% 64% 65% 65% 65% 65% 66% 66% 66% 66% 67% 67% 67% 67% 68% 68% 68% 68% 69% 69% 69% 69% 69% 70% 70% 70% 70% 71% 71% 71% 71% 72% 72% 72% 72% 73% 73% 73% 73% 74% 74% 74% 74% 75% 75% 75% 75% 76% 76% 76% 76% 77% 77% 77% 77% 78% 78% 78% 78% 79% 79% 79% 79% 80% 80% 80% 80% 81% 81% 81% 81% 82% 82% 82% 82% 83% 83% 83% 83% 84% 84% 84% 84% 85% 85% 85% 85% 86% 86% 86% 86% 86% 87% 87% 87% 87% 88% 88% 88% 88% 89% 89% 89% 89% 90% 90% 90% 90% 91% 91% 91% 91% 92% 92% 92% 92% 93% 93% 93% 93% 94% 94% 94% 94% 95% 95% 95% 95% 96% 96% 96% 96% 97% 97% 97% 97% 98% 98% 98% 98% 99% 99% 99% 99%100%[0m... [1;32mhash verified (cd45a512af1c8a508976c1beb4f5825b3bb89f4d)[0m
* gcc-8.3.0.tar.xz (downloading from https://ftpmirror.gnu.org/gcc/gcc-8.3.0/gcc-8.3.0.tar.xz)... [0;31m 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 3% 3% 3% 3% 3% 3% 3% 3% 3% 3% 3% 3% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 8% 8% 8% 8% 8% 8% 8% 8% 8% 8% 8% 8% 9% 9% 9% 9% 9% 9% 9% 9% 9% 9% 9% 9% 9% 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% 11% 11% 11% 11% 11% 11% 11% 11% 11% 11% 11% 11% 11% 12% 12% 12% 12% 12% 12% 12% 12% 12% 12% 12% 12% 13% 13% 13% 13% 13% 13% 13% 13% 13% 13% 13% 13% 13% 14% 14% 14% 14% 14% 14% 14% 14% 14% 14% 14% 14% 15% 15% 15% 15% 15% 15% 15% 15% 15% 15% 15% 15% 15% 16% 16% 16% 16% 16% 16% 16% 16% 16% 16% 16% 16% 17% 17% 17% 17% 17% 17% 17% 17% 17% 17% 17% 17% 18% 18% 18% 18% 18% 18% 18% 18% 18% 18% 18% 18% 18% 19% 19% 19% 19% 19% 19% 19% 19% 19% 19% 19% 19% 20% 20% 20% 20% 20% 20% 20% 20% 20% 20% 20% 20% 20% 21% 21% 21% 21% 21% 21% 21% 21% 21% 21% 21% 21% 22% 22% 22% 22% 22% 22% 22% 22% 22% 22% 22% 22% 22% 23% 23% 23% 23% 23% 23% 23% 23% 23% 23% 23% 23% 24% 24% 24% 24% 24% 24% 24% 24% 24% 24% 24% 24% 24% 25% 25% 25% 25% 25% 25% 25% 25% 25% 25% 25% 25% 26% 26% 26% 26% 26% 26% 26% 26% 26% 26% 26% 26% 27% 27% 27% 27% 27% 27% 27% 27% 27% 27% 27% 27% 27% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 29% 29% 29% 29% 29% 29% 29% 29% 29% 29% 29% 29% 29% 30% 30% 30% 30% 30% 30% 30% 30% 30% 30% 30% 30% 31% 31% 31% 31% 31% 31% 31% 31% 31% 31% 31% 31% 31% 32% 32% 32% 32% 32% 32% 32% 32% 32% 32% 32% 32% 33% 33% 33% 33% 33% 33% 33% 33% 33% 33% 33% 33% 34% 34% 34% 34% 34% 34% 34% 34% 34% 34% 34% 34% 34% 35% 35% 35% 35% 35% 35% 35% 35% 35% 35% 35% 35% 36% 36% 36% 36% 36% 36% 36% 36% 36% 36% 36% 36% 36% 37% 37% 37% 37% 37% 37% 37% 37% 37% 37% 37% 37% 38% 38% 38% 38% 38% 38% 38% 38% 38% 38% 38% 38% 38% 39% 39% 39% 39% 39% 39% 39% 39% 39% 39% 39% 39% 40% 40% 40% 40% 40% 40% 40% 40% 40% 40% 40% 40% 40% 41% 41% 41% 41% 41% 41% 41% 41% 41% 41% 41% 41% 42% 42% 42% 42% 42% 42% 42% 42% 42% 42% 42% 42% 43% 43% 43% 43% 43% 43% 43% 43% 43% 43% 43% 43% 43% 44% 44% 44% 44% 44% 44% 44% 44% 44% 44% 44% 44% 45% 45% 45% 45% 45% 45% 45% 45% 45% 45% 45% 45% 45% 46% 46% 46% 46% 46% 46% 46% 46% 46% 46% 46% 46% 47% 47% 47% 47% 47% 47% 47% 47% 47% 47% 47% 47% 47% 48% 48% 48% 48% 48% 48% 48% 48% 48% 48% 48% 48% 49% 49% 49% 49% 49% 49% 49% 49% 49% 49% 49% 49% 49% 50% 50% 50% 50% 50% 50% 50% 50% 50% 50% 50% 50% 51% 51% 51% 51% 51% 51% 51% 51% 51% 51% 51% 51% 52% 52% 52% 52% 52% 52% 52% 52% 52% 52% 52% 52% 52% 53% 53% 53% 53% 53% 53% 53% 53% 53% 53% 53% 53% 54% 54% 54% 54% 54% 54% 54% 54% 54% 54% 54% 54% 54% 55% 55% 55% 55% 55% 55% 55% 55% 55% 55% 55% 55% 56% 56% 56% 56% 56% 56% 56% 56% 56% 56% 56% 56% 56% 57% 57% 57% 57% 57% 57% 57% 57% 57% 57% 57% 57% 58% 58% 58% 58% 58% 58% 58% 58% 58% 58% 58% 58% 59% 59% 59% 59% 59% 59% 59% 59% 59% 59% 59% 59% 59% 60% 60% 60% 60% 60% 60% 60% 60% 60% 60% 60% 60% 61% 61% 61% 61% 61% 61% 61% 61% 61% 61% 61% 61% 61% 62% 62% 62% 62% 62% 62% 62% 62% 62% 62% 62% 62% 63% 63% 63% 63% 63% 63% 63% 63% 63% 63% 63% 63% 63% 64% 64% 64% 64% 64% 64% 64% 64% 64% 64% 64% 64% 65% 65% 65% 65% 65% 65% 65% 65% 65% 65% 65% 65% 65% 66% 66% 66% 66% 66% 66% 66% 66% 66% 66% 66% 66% 67% 67% 67% 67% 67% 67% 67% 67% 67% 67% 67% 67% 68% 68% 68% 68% 68% 68% 68% 68% 68% 68% 68% 68% 68% 69% 69% 69% 69% 69% 69% 69% 69% 69% 69% 69% 69% 70% 70% 70% 70% 70% 70% 70% 70% 70% 70% 70% 70% 70% 71% 71% 71% 71% 71% 71% 71% 71% 71% 71% 71% 71% 72% 72% 72% 72% 72% 72% 72% 72% 72% 72% 72% 72% 72% 73% 73% 73% 73% 73% 73% 73% 73% 73% 73% 73% 73% 74% 74% 74% 74% 74% 74% 74% 74% 74% 74% 74% 74% 74% 75% 75% 75% 75% 75% 75% 75% 75% 75% 75% 75% 75% 76% 76% 76% 76% 76% 76% 76% 76% 76% 76% 76% 76% 77% 77% 77% 77% 77% 77% 77% 77% 77% 77% 77% 77% 77% 78% 78% 78% 78% 78% 78% 78% 78% 78% 78% 78% 78% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 80% 80% 80% 80% 80% 80% 80% 80% 80% 80% 80% 80% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 82% 82% 82% 82% 82% 82% 82% 82% 82% 82% 82% 82% 83% 83% 83% 83% 83% 83% 83% 83% 83% 83% 83% 83% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%100%[0m... [1;32mhash verified (c27f4499dd263fe4fb01bcc5565917f3698583b2)[0m
Downloaded tarballs ... [0;32mok[0m
Unpacking and patching ...
* gmp-6.1.2.tar.xz
o gmp-6.1.2_freebsd-configure.patch
* mpfr-4.0.2.tar.xz
* mpc-1.1.0.tar.gz
* binutils-2.32.tar.xz
o binutils-2.32_as-ipxe.patch
o binutils-2.32_mips-gold.patch
o binutils-2.32_no-bfd-doc.patch
* gcc-8.3.0.tar.xz
o gcc-8.3.0_ada-musl_workaround.patch
o gcc-8.3.0_gnat-bad_constant.patch
o gcc-8.3.0_gnat.patch
o gcc-8.3.0_libgcc.patch
o gcc-8.3.0_nds32_ite.patch
Unpacked and patched ... [0;32mok[0m
Building packages ...
Building GMP v6.1.2 for host ... [0;32mok[0m
Building MPFR v4.0.2 for host ... [0;32mok[0m
Building MPC v1.1.0 for host ... [0;32mok[0m
Building BINUTILS v2.32 for target ... [0;32mok[0m
Building GCC v8.3.0 for target ... FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build171-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins11154058760280386605.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build171-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_coreboot #394
From jenkins at jenkins.debian.net Tue Nov 5 13:30:18 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:30:18 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to stable :
reproducible_maintenance_amd64_profitbricks1 #15754
In-Reply-To: <515467151.132.1572761281108.JavaMail.jenkins@jenkins>
References: <515467151.132.1572761281108.JavaMail.jenkins@jenkins>
Message-ID: <161510593.17.1572960618617.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:31:08 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:08 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
d-i_build_cdebconf-terminal #88
In-Reply-To: <1180694529.550.1571528596998.JavaMail.jenkins@jenkins>
References: <1180694529.550.1571528596998.JavaMail.jenkins@jenkins>
Message-ID: <1116627921.18.1572960668066.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:31:20 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:20 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build became unstable: d-i_maintenance
#1783
Message-ID: <1741481320.19.1572960680745.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_i386_profitbricks12 #101
Message-ID: <1427273132.22.1572960692154.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_setup_pbuilder_bullseye_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins17473280195731998754.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_i386_profitbricks2 #1245
Message-ID: <1329859189.20.1572960692142.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_setup_pbuilder_experimental_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins13217262428785378186.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_i386_profitbricks12 #803
Message-ID: <1870494921.21.1572960692144.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_setup_pbuilder_stretch_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins18081209357017225565.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:11 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_i386_profitbricks12 #11677
Message-ID: <2129230237.23.1572960692158.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_maintenance_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins14468330864816176539.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_i386_profitbricks2 #795
Message-ID: <600788351.29.1572960692191.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_setup_pbuilder_stretch_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins2372931089395516052.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:11 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_i386_profitbricks12 #798
Message-ID: <1278609358.26.1572960692163.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_setup_pbuilder_buster_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins2373398262564172.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_i386_profitbricks12 #1016
Message-ID: <673308152.25.1572960692163.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_setup_pbuilder_experimental_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins3452880100743964040.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_i386_profitbricks2 #1273
Message-ID: <493296637.27.1572960692172.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_setup_pbuilder_unstable_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins12081882652119164303.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_i386_profitbricks2 #792
Message-ID: <747180035.31.1572960692198.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_setup_pbuilder_buster_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins12016801654476081219.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_i386_profitbricks2 #98
Message-ID: <1690360085.30.1572960692192.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_setup_pbuilder_bullseye_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins15850371196663373018.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:09 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_i386_profitbricks12 #1015
Message-ID: <194801089.24.1572960692162.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_setup_pbuilder_unstable_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins2828480084029286876.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:13 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:31:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:31:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_i386_profitbricks2 #13497
In-Reply-To: <36279779.142.1572768109652.JavaMail.jenkins@jenkins>
References: <36279779.142.1572768109652.JavaMail.jenkins@jenkins>
Message-ID: <726455336.28.1572960692191.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_maintenance_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins10565138617941433245.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 13:30:09 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:38:05 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:38:05 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_armhf_odxu4c #106
Message-ID: <423275758.39.1572961085413.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on odxu4c-armhf-rb.debian.net (odxu4c armhf) in workspace /srv/jenkins/pseudo-hosts/odxu4c-armhf-rb/workspace/reproducible_setup_pbuilder_bullseye_armhf_odxu4c
[reproducible_setup_pbuilder_bullseye_armhf_odxu4c] $ /bin/sh -xe /tmp/jenkins11439015425641394354.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Tue 05 Nov 2019 01:37:27 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_bullseye_armhf_odxu4c) on odxu4c now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "bullseye" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue 05 Nov 2019 01:37:27 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-Nr1uRI7E" on odxu4c.
/var/cache/pbuilder/bullseye-reproducible-base.tgz outdated, creating a new one...
Tue Nov 5 13:37:27 UTC 2019 - creating /var/cache/pbuilder/bullseye-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://10.0.0.15:8000/ --basetgz /var/cache/pbuilder/bullseye-reproducible-base-new.tgz --distribution bullseye --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
I: Distribution is bullseye.
I: Current time: Tue Nov 5 05:37:28 PST 2019
I: pbuilder-time-stamp: 1572961048
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Checking Release signature
I: Valid Release signature (key id 0146DC6D4A0B2914BDED34DB648ACFD622F3D138)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'odxu4c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins11439015425641394354.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on odxu4c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_setup_pbuilder_bullseye_armhf_odxu4c #106
From jenkins at jenkins.debian.net Tue Nov 5 13:38:05 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:38:05 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_armhf_odxu4c #1330
Message-ID: <576047992.40.1572961085431.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 28.26 KB...]
I: removing directory /srv/workspace/pbuilder/11084 and its subdirectories
W: /root/.pbuilderrc does not exist
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base-new.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
Configure the chroot to use the reproducible team experimental archive...
Get:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease [72.2 kB]
Hit:2 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Get:3 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease [2863 B]
Get:4 http://cdn-fastly.deb.debian.org/debian experimental/main Sources [281 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages [286 kB]
Get:6 http://tests.reproducible-builds.org/debian/repository/debian ./ Packages [7361 B]
Fetched 650 kB in 2s (314 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Package files:
100 /var/lib/dpkg/status
release a=now
1001 http://tests.reproducible-builds.org/debian/repository/debian ./ Packages
release o=reproducible,c=
origin tests.reproducible-builds.org
1 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages
release o=Debian,a=experimental,n=experimental,l=Debian,c=main,b=armhf
origin cdn-fastly.deb.debian.org
500 http://deb.debian.org/debian unstable/main armhf Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=armhf
origin deb.debian.org
Pinned packages:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============================-===================-============-===============================================================================
ii adduser 3.118 all add and remove users and groups
ii apt 1.8.4 armhf commandline package manager
ii aptitude 0.8.12-1 armhf terminal-based package manager
ii aptitude-common 0.8.12-1 all architecture independent files for the aptitude package manager
ii base-files 11 armhf Debian base system miscellaneous files
ii base-passwd 3.5.46 armhf Debian base system master password and group files
ii bash 5.0-4 armhf GNU Bourne Again SHell
ii binutils 2.33.1-2 armhf GNU assembler, linker and binary utilities
ii binutils-arm-linux-gnueabihf 2.33.1-2 armhf GNU binary utilities, for arm-linux-gnueabihf target
ii binutils-common:armhf 2.33.1-2 armhf Common files for the GNU assembler, linker and binary utilities
ii bsdutils 1:2.34-0.1 armhf basic utilities from 4.4BSD-Lite
ii build-essential 12.8 armhf Informational list of build-essential packages
ii bzip2 1.0.8-2 armhf high-quality block-sorting file compressor - utilities
ii coreutils 8.30-3 armhf GNU core utilities
ii cpp 4:9.2.1-3.1 armhf GNU C preprocessor (cpp)
ii cpp-9 9.2.1-17 armhf GNU C preprocessor
ii dash 0.5.10.2-6 armhf POSIX-compliant shell
ii debconf 1.5.73 all Debian configuration management system
ii debian-archive-keyring 2019.1 all GnuPG archive keys of the Debian archive
ii debianutils 4.9 armhf Miscellaneous utilities specific to Debian
ii diffutils 1:3.7-3 armhf File comparison utilities
ii disorderfs 0.5.6-2 armhf FUSE filesystem that introduces non-determinism
ii dpkg 1.19.7 armhf Debian package management system
ii dpkg-dev 1.19.7 all Debian package development tools
ii e2fsprogs 1.45.4-1 armhf ext2/ext3/ext4 file system utilities
ii fakeroot 1.24-1 armhf tool for simulating superuser privileges
ii fdisk 2.34-0.1 armhf collection of partitioning utilities
ii findutils 4.7.0-1 armhf utilities for finding files--find, xargs
ii fuse 2.9.9-2 armhf Filesystem in Userspace
ii g++ 4:9.2.1-3.1 armhf GNU C++ compiler
ii g++-9 9.2.1-17 armhf GNU C++ compiler
ii gcc 4:9.2.1-3.1 armhf GNU C compiler
ii gcc-9 9.2.1-17 armhf GNU C compiler
ii gcc-9-base:armhf 9.2.1-17 armhf GCC, the GNU Compiler Collection (base package)
ii gpgv 2.2.17-3 armhf GNU privacy guard - signature verification tool
ii grep 3.3-1 armhf GNU grep, egrep and fgrep
ii gzip 1.9-3 armhf GNU compression utilities
ii hostname 3.22 armhf utility to set/show the host name or domain name
ii init-system-helpers 1.57 all helper tools for all init systems
ii libacl1:armhf 2.2.53-5 armhf access control list - shared library
ii libapt-pkg5.0:armhf 1.8.4 armhf package management runtime library
ii libasan5:armhf 9.2.1-17 armhf AddressSanitizer -- a fast memory error detector
ii libatomic1:armhf 9.2.1-17 armhf support library providing __atomic built-in functions
ii libattr1:armhf 1:2.4.48-5 armhf extended attribute handling - shared library
ii libaudit-common 1:2.8.5-2 all Dynamic library for security auditing - common files
ii libaudit1:armhf 1:2.8.5-2 armhf Dynamic library for security auditing
ii libbinutils:armhf 2.33.1-2 armhf GNU binary utilities (private shared library)
ii libblkid1:armhf 2.34-0.1 armhf block device ID library
ii libboost-iostreams1.67.0:armhf 1.67.0-13 armhf Boost.Iostreams Library
ii libbz2-1.0:armhf 1.0.8-2 armhf high-quality block-sorting file compressor library - runtime
ii libc-bin 2.29-3 armhf GNU C Library: Binaries
ii libc-dev-bin 2.29-3 armhf GNU C Library: Development binaries
ii libc-l10n 2.29-3 all GNU C Library: localization files
ii libc6:armhf 2.29-3 armhf GNU C Library: Shared libraries
ii libc6-dev:armhf 2.29-3 armhf GNU C Library: Development Libraries and Header Files
ii libcap-ng0:armhf 0.7.9-2.1 armhf An alternate POSIX capabilities library
ii libcc1-0:armhf 9.2.1-17 armhf GCC cc1 plugin for GDB
ii libcom-err2:armhf 1.45.4-1 armhf common error description library
ii libcwidget4:armhf 0.5.18-5 armhf high-level terminal interface library for C++ (runtime files)
ii libdb5.3:armhf 5.3.28+dfsg1-0.6 armhf Berkeley v5.3 Database Libraries [runtime]
ii libdebconfclient0:armhf 0.250 armhf Debian Configuration Management System (C-implementation library)
ii libdpkg-perl 1.19.7 all Dpkg perl modules
ii libext2fs2:armhf 1.45.4-1 armhf ext2/ext3/ext4 file system libraries
ii libfakeroot:armhf 1.24-1 armhf tool for simulating superuser privileges - shared libraries
ii libfdisk1:armhf 2.34-0.1 armhf fdisk partitioning library
ii libffi6:armhf 3.2.1-9 armhf Foreign Function Interface library runtime
ii libfuse2:armhf 2.9.9-2 armhf Filesystem in Userspace (library)
ii libgcc-9-dev:armhf 9.2.1-17 armhf GCC support library (development files)
ii libgcc1:armhf 1:9.2.1-17 armhf GCC support library
ii libgcrypt20:armhf 1.8.5-3 armhf LGPL Crypto library - runtime library
ii libgdbm-compat4:armhf 1.18.1-5 armhf GNU dbm database routines (legacy support runtime version)
ii libgdbm6:armhf 1.18.1-5 armhf GNU dbm database routines (runtime version)
ii libgmp10:armhf 2:6.1.2+dfsg-4 armhf Multiprecision arithmetic library
ii libgnutls30:armhf 3.6.10-4 armhf GNU TLS library - main runtime library
ii libgomp1:armhf 9.2.1-17 armhf GCC OpenMP (GOMP) support library
ii libgpg-error0:armhf 1.36-7 armhf GnuPG development runtime library
ii libhogweed5:armhf 3.5.1+really3.5.1-2 armhf low level cryptographic library (public-key cryptos)
ii libidn2-0:armhf 2.2.0-2 armhf Internationalized domain names (IDNA2008/TR46) library
ii libisl21:armhf 0.21-2 armhf manipulating sets and relations of integer points bounded by linear constraints
ii liblz4-1:armhf 1.9.2-1 armhf Fast LZ compression algorithm library - runtime
ii liblzma5:armhf 5.2.4-1+b1 armhf XZ-format compression library
ii libmount1:armhf 2.34-0.1 armhf device mounting library
ii libmpc3:armhf 1.1.0-1 armhf multiple precision complex floating-point library
ii libmpfr6:armhf 4.0.2-1 armhf multiple precision floating-point computation
ii libncursesw6:armhf 6.1+20191019-1 armhf shared libraries for terminal handling (wide character support)
ii libnettle7:armhf 3.5.1+really3.5.1-2 armhf low level cryptographic library (symmetric and one-way cryptos)
ii libp11-kit0:armhf 0.23.18.1-2 armhf library for loading and coordinating access to PKCS#11 modules - runtime
ii libpam-modules:armhf 1.3.1-5 armhf Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.3.1-5 armhf Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.3.1-5 all Runtime support for the PAM library
ii libpam0g:armhf 1.3.1-5 armhf Pluggable Authentication Modules library
ii libpcre2-8-0:armhf 10.32-5+b1 armhf New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre3:armhf 2:8.39-12+b1 armhf Old Perl 5 Compatible Regular Expression Library - runtime files
ii libperl5.30:armhf 5.30.0-9 armhf shared Perl library
ii libseccomp2:armhf 2.4.1-2 armhf high level interface to Linux seccomp filter
ii libselinux1:armhf 2.9-2+b2 armhf SELinux runtime shared libraries
ii libsemanage-common 2.9-3 all Common files for SELinux policy management libraries
ii libsemanage1:armhf 2.9-3 armhf SELinux policy management library
ii libsepol1:armhf 2.9-2+b2 armhf SELinux library for manipulating binary security policies
ii libsigc++-2.0-0v5:armhf 2.10.2-1 armhf type-safe Signal Framework for C++ - runtime
ii libsmartcols1:armhf 2.34-0.1 armhf smart column output alignment library
ii libsqlite3-0:armhf 3.30.1-1 armhf SQLite 3 shared library
ii libss2:armhf 1.45.4-1 armhf command-line interface parsing library
ii libstdc++-9-dev:armhf 9.2.1-17 armhf GNU Standard C++ Library v3 (development files)
ii libstdc++6:armhf 9.2.1-17 armhf GNU Standard C++ Library v3
ii libsystemd0:armhf 242-7 armhf systemd utility library
ii libtasn1-6:armhf 4.14-3 armhf Manage ASN.1 structures (runtime)
ii libtinfo6:armhf 6.1+20191019-1 armhf shared low-level terminfo library for terminal handling
ii libubsan1:armhf 9.2.1-17 armhf UBSan -- undefined behaviour sanitizer (runtime)
ii libudev1:armhf 242-7 armhf libudev shared library
ii libunistring2:armhf 0.9.10-2 armhf Unicode string library for C
ii libuuid1:armhf 2.34-0.1 armhf Universally Unique ID library
ii libxapian30:armhf 1.4.12-1 armhf Search engine library
ii libzstd1:armhf 1.4.3+dfsg-1 armhf fast lossless compression algorithm
ii linux-libc-dev:armhf 5.3.7-1 armhf Linux support headers for userspace development
ii locales-all 2.29-3 armhf GNU C Library: Precompiled locale data
ii login 1:4.7-2 armhf system login tools
ii logsave 1.45.4-1 armhf save the output of a command in a log file
ii lsb-base 11.1.0 all Linux Standard Base init script functionality
ii make 4.2.1-1.2 armhf utility for directing compilation
ii mawk 1.3.3-17+b3 armhf a pattern scanning and text processing language
ii mount 2.34-0.1 armhf tools for mounting and manipulating filesystems
ii ncurses-base 6.1+20191019-1 all basic terminal type definitions
ii ncurses-bin 6.1+20191019-1 armhf terminal-related programs and man pages
ii passwd 1:4.7-2 armhf change and administer password and group data
ii patch 2.7.6-6 armhf Apply a diff file to an original
ii perl 5.30.0-9 armhf Larry Wall's Practical Extraction and Report Language
ii perl-base 5.30.0-9 armhf minimal Perl system
ii perl-modules-5.30 5.30.0-9 all Core Perl modules
ii sed 4.7-1 armhf GNU stream editor for filtering/transforming text
ii sysvinit-utils 2.96-1 armhf System-V-like utilities
ii tar 1.30+dfsg-6 armhf GNU version of the tar archiving utility
ii tzdata 2019c-3 all time zone and daylight-saving time data
ii util-linux 2.34-0.1 armhf miscellaneous system utilities
ii xz-utils 5.2.4-1+b1 armhf XZ-format compression utilities
ii zlib1g:armhf 1:1.2.11.dfsg-1+b1 armhf compression library - runtime
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'odxu4c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins2614099352091356092.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on odxu4c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_setup_pbuilder_experimental_armhf_odxu4c #1330
From jenkins at jenkins.debian.net Tue Nov 5 13:38:05 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:38:05 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_odxu4c #14033
Message-ID: <1750565898.38.1572961085413.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 41.48 KB...]
removed directory '/srv/reproducible-results/rbuild-debian/tmp.CUZbHyixFC'
removed '/srv/reproducible-results/rbuild-debian/tmp.kXiEawlBkK/tmp.auzKkAGurW'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.kXiEawlBkK'
removed '/srv/reproducible-results/rbuild-debian/tmp.4ZxtHUExKC/tmp.G4jJQRrYlA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4ZxtHUExKC'
removed '/srv/reproducible-results/rbuild-debian/tmp.GRXT9HE2wp/tmp.pok695gxbB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.GRXT9HE2wp'
removed '/srv/reproducible-results/rbuild-debian/tmp.HBNtgx5gZV/tmp.oJld0uPH6H'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.HBNtgx5gZV'
removed '/srv/reproducible-results/rbuild-debian/tmp.At9qrQOOIO/tmp.aSGQPn4sTd'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.At9qrQOOIO'
removed '/srv/reproducible-results/rbuild-debian/tmp.08LJYhGAxV/tmp.oRUxTPCeNA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.08LJYhGAxV'
removed '/srv/reproducible-results/rbuild-debian/tmp.vhRofAJ1Hz/tmp.jOBbIxETRE'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.vhRofAJ1Hz'
removed '/srv/reproducible-results/rbuild-debian/tmp.J4dP3l7CGv/tmp.LhLhy7fyU7'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.J4dP3l7CGv'
removed '/srv/reproducible-results/rbuild-debian/tmp.TGk5jxK6sf/tmp.PDCqp5m6vA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.TGk5jxK6sf'
removed '/srv/reproducible-results/rbuild-debian/tmp.hh9ek1CNpu/tmp.n68XCchC2O'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.hh9ek1CNpu'
removed '/srv/reproducible-results/rbuild-debian/tmp.OMmQo2IIuf/tmp.8sfN9K57n4'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.OMmQo2IIuf'
removed '/srv/reproducible-results/rbuild-debian/tmp.X2EFnyqxig/tmp.Ojf2P5zs8O'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.X2EFnyqxig'
removed '/srv/reproducible-results/rbuild-debian/tmp.f2vGSLVtJG/tmp.fB6E8j4DV8'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.f2vGSLVtJG'
removed '/srv/reproducible-results/rbuild-debian/tmp.CmfyZC19h2/tmp.QnP1mddSKB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.CmfyZC19h2'
removed '/srv/reproducible-results/rbuild-debian/tmp.5A1J1bTgyP/tmp.QaT2RvbGCe'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.5A1J1bTgyP'
removed '/srv/reproducible-results/rbuild-debian/tmp.XJiCHDo318/tmp.5HASMriM6w'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.XJiCHDo318'
removed '/srv/reproducible-results/rbuild-debian/tmp.xHnJ5llIgx/tmp.vM9ZB4XCnN'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.xHnJ5llIgx'
removed '/srv/reproducible-results/rbuild-debian/tmp.A4QEvZLaII/tmp.2782jk2xbV'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.A4QEvZLaII'
removed '/srv/reproducible-results/rbuild-debian/tmp.WSM6j3i5As/tmp.yIRDaKSti2'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.WSM6j3i5As'
removed '/srv/reproducible-results/rbuild-debian/tmp.tSwWbuDpDe/tmp.ZGQ7YkugOT'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.tSwWbuDpDe'
removed '/srv/reproducible-results/rbuild-debian/tmp.bjVx0JhZdg/tmp.7lb06zTPPq'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.bjVx0JhZdg'
removed '/srv/reproducible-results/rbuild-debian/tmp.XqDsO23igB/tmp.zKD5fOnR8W'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.XqDsO23igB'
removed '/srv/reproducible-results/rbuild-debian/tmp.K2ce2KFsYq/tmp.sC2hOy6kFU'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.K2ce2KFsYq'
removed '/srv/reproducible-results/rbuild-debian/tmp.ApELOoTmRs/tmp.aNlDqcMhHa'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ApELOoTmRs'
removed '/srv/reproducible-results/rbuild-debian/tmp.RwF6D9VgRM/tmp.UZqBIniFPf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.RwF6D9VgRM'
removed '/srv/reproducible-results/rbuild-debian/tmp.EGXIIAOX2c/tmp.BWBszugt7d'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.EGXIIAOX2c'
removed '/srv/reproducible-results/rbuild-debian/tmp.EoafWbLtob/tmp.hkPRlNp9XJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.EoafWbLtob'
removed '/srv/reproducible-results/rbuild-debian/tmp.REfyQZaZkU/tmp.gMRSXQiUj6'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.REfyQZaZkU'
removed '/srv/reproducible-results/rbuild-debian/tmp.5fbNq0dMX6/tmp.D1lT8yKz8S'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.5fbNq0dMX6'
removed '/srv/reproducible-results/rbuild-debian/tmp.HAWI1aau1P/tmp.LMl0XtgTzc'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.HAWI1aau1P'
removed '/srv/reproducible-results/rbuild-debian/tmp.b3EcykDelH/tmp.IMmWr94Shu'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.b3EcykDelH'
removed '/srv/reproducible-results/rbuild-debian/tmp.DAhgaG8E2v/tmp.0oDK0TBZJV'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DAhgaG8E2v'
removed '/srv/reproducible-results/rbuild-debian/tmp.JIaCV6X3Fk/tmp.8ogjmapx8y'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.JIaCV6X3Fk'
removed '/srv/reproducible-results/rbuild-debian/tmp.Es8kT7Xd4O/tmp.SZ71vVR2XD'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Es8kT7Xd4O'
removed '/srv/reproducible-results/rbuild-debian/tmp.ecGQGu3c0R/tmp.PcvQuoU3dY'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ecGQGu3c0R'
removed '/srv/reproducible-results/rbuild-debian/tmp.DWquM2Nv7E/tmp.7uvTzrHDlv'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DWquM2Nv7E'
removed '/srv/reproducible-results/rbuild-debian/tmp.Y6eR6uLBxF/tmp.fsP2bbzZUE'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Y6eR6uLBxF'
removed '/srv/reproducible-results/rbuild-debian/tmp.VOTgwGSZHd/tmp.rXzBj7NwJA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.VOTgwGSZHd'
removed '/srv/reproducible-results/rbuild-debian/tmp.Z22Rd8yHtl/tmp.Pq46Ii09h3'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Z22Rd8yHtl'
removed '/srv/reproducible-results/rbuild-debian/tmp.E6cEzsuq6U/tmp.wXgGoWRnIX'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.E6cEzsuq6U'
removed '/srv/reproducible-results/rbuild-debian/tmp.ydyGofjr8l/tmp.cgyn3eAsP3'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ydyGofjr8l'
removed '/srv/reproducible-results/rbuild-debian/tmp.GWP0xV3HQx/tmp.WlcgSWXuqC'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.GWP0xV3HQx'
removed '/srv/reproducible-results/rbuild-debian/tmp.k9I2vaJmST/tmp.ruQYRCoBtY'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.k9I2vaJmST'
removed '/srv/reproducible-results/rbuild-debian/tmp.W6I5CtTJVk/tmp.ReAP192g7v'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.W6I5CtTJVk'
removed '/srv/reproducible-results/rbuild-debian/tmp.PZHOij18O0/tmp.yUKOeW8R5F'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.PZHOij18O0'
removed '/srv/reproducible-results/rbuild-debian/tmp.iyB9iafazz/tmp.9nq7zl9AJe'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.iyB9iafazz'
removed '/srv/reproducible-results/rbuild-debian/tmp.mxhnH0Vc4B/tmp.INuU3eBhB6'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.mxhnH0Vc4B'
removed '/srv/reproducible-results/rbuild-debian/tmp.BTpggN23bW/tmp.lG8jHFVlYu'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.BTpggN23bW'
removed '/srv/reproducible-results/rbuild-debian/tmp.LAU9EIbLiD/tmp.nylIt2eQ3i'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.LAU9EIbLiD'
removed '/srv/reproducible-results/rbuild-debian/tmp.G1SxDcGiWM/tmp.Mogy0CQIPm'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.G1SxDcGiWM'
removed '/srv/reproducible-results/rbuild-debian/tmp.1D5QhJLkyX/tmp.VfAo8XJoIy'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1D5QhJLkyX'
removed '/srv/reproducible-results/rbuild-debian/tmp.JclhzuKZ3f/tmp.2fUQ9kqMYB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.JclhzuKZ3f'
removed '/srv/reproducible-results/rbuild-debian/tmp.28TiGxHFex/tmp.FHjInFbhP4'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.28TiGxHFex'
removed '/srv/reproducible-results/rbuild-debian/tmp.sI3BShEzTi/tmp.0BogIc15sc'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.sI3BShEzTi'
removed '/srv/reproducible-results/rbuild-debian/tmp.Y5ESgqJxt8/tmp.6QU9qRFTbr'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Y5ESgqJxt8'
removed '/srv/reproducible-results/rbuild-debian/tmp.Qa1MYfYH2s/tmp.RhrRPpIW84'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Qa1MYfYH2s'
removed '/srv/reproducible-results/rbuild-debian/tmp.mLTWbW6aGF/tmp.qsbvvTmAcY'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.mLTWbW6aGF'
removed '/srv/reproducible-results/rbuild-debian/tmp.StydmE09sD/tmp.69enARGSic'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.StydmE09sD'
removed '/srv/reproducible-results/rbuild-debian/tmp.1BonV60qci/tmp.FpS5Hxtnaj'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1BonV60qci'
removed '/srv/reproducible-results/rbuild-debian/tmp.vvRePravJ8/tmp.PNxkMPCHUs'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.vvRePravJ8'
removed '/srv/reproducible-results/rbuild-debian/tmp.b6vqNNyvOI/tmp.zIXoC0ZB9O'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.b6vqNNyvOI'
removed '/srv/reproducible-results/rbuild-debian/tmp.DbR03hGoN5/tmp.Yegfh7TGDy'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DbR03hGoN5'
removed '/srv/reproducible-results/rbuild-debian/tmp.5YDUQNX5Ib/tmp.0h0WH2odMk'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.5YDUQNX5Ib'
removed '/srv/reproducible-results/rbuild-debian/tmp.6RjJ4fGwFA/tmp.7DRDNBg8lB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.6RjJ4fGwFA'
removed '/srv/reproducible-results/rbuild-debian/tmp.SJEmUCsIpE/tmp.0U95qjv76O'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.SJEmUCsIpE'
removed '/srv/reproducible-results/rbuild-debian/tmp.ufdaUicCjo/tmp.LVhBSi7yGz'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ufdaUicCjo'
removed '/srv/reproducible-results/rbuild-debian/tmp.oTUcVw5TOe/tmp.t1Hseom1m5'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.oTUcVw5TOe'
removed '/srv/reproducible-results/rbuild-debian/tmp.C1ExebOdmM/tmp.hAxQOtq2w5'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.C1ExebOdmM'
removed '/srv/reproducible-results/rbuild-debian/tmp.uBJEpfQGeB/tmp.ysdqmwzgtp'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.uBJEpfQGeB'
removed '/srv/reproducible-results/rbuild-debian/tmp.O67iZ8ZgSJ/tmp.gadGs6brvg'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.O67iZ8ZgSJ'
removed '/srv/reproducible-results/rbuild-debian/tmp.wFGlSt14V4/tmp.3ek2AfBWS0'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.wFGlSt14V4'
removed '/srv/reproducible-results/rbuild-debian/tmp.uBhvKku7hK/tmp.WJKaMg2IRK'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.uBhvKku7hK'
removed '/srv/reproducible-results/rbuild-debian/tmp.pnDypHVrKI/tmp.MRYrrHX0hf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.pnDypHVrKI'
removed '/srv/reproducible-results/rbuild-debian/tmp.FAKNTLqUHL/tmp.xY1yREX6vT'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.FAKNTLqUHL'
removed '/srv/reproducible-results/rbuild-debian/tmp.fO78i5yrDi/tmp.WKfvsLEcpC'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fO78i5yrDi'
removed '/srv/reproducible-results/rbuild-debian/tmp.YkYT3zt7s2/tmp.sb9KPdRjLt'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.YkYT3zt7s2'
removed '/srv/reproducible-results/rbuild-debian/tmp.xURS5jge9a/tmp.cNjsPjLJJb'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.xURS5jge9a'
removed '/srv/reproducible-results/rbuild-debian/tmp.TyM8uvd5H9/tmp.LR09eX7OJ0'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.TyM8uvd5H9'
removed '/srv/reproducible-results/rbuild-debian/tmp.t2pD4hdOSf/tmp.OqpCTyT2sf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.t2pD4hdOSf'
removed '/srv/reproducible-results/rbuild-debian/tmp.HsjUCtJln8/tmp.WAskmrELrT'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.HsjUCtJln8'
removed '/srv/reproducible-results/rbuild-debian/tmp.PdhNuLMKZU/tmp.Y8lLWrkKfF'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.PdhNuLMKZU'
removed '/srv/reproducible-results/rbuild-debian/tmp.1YAJCHn0Vm/tmp.mbXzu2PxQU'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1YAJCHn0Vm'
removed '/srv/reproducible-results/rbuild-debian/tmp.xru2fhMLlU/tmp.8W6XXVpFIO'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.xru2fhMLlU'
removed '/srv/reproducible-results/rbuild-debian/tmp.0uW86JYX84/tmp.PVFl5uLfY7'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.0uW86JYX84'
removed '/srv/reproducible-results/rbuild-debian/tmp.Fem8VV9BWa/tmp.X3WCozDOUR'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Fem8VV9BWa'
removed '/srv/reproducible-results/rbuild-debian/tmp.503oIB3kIh/tmp.tUpwyZXGOW'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.503oIB3kIh'
removed '/srv/reproducible-results/rbuild-debian/tmp.2ikWWaTrsM/tmp.NxVEhGby42'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.2ikWWaTrsM'
removed '/srv/reproducible-results/rbuild-debian/tmp.c9JScP6S5B/tmp.OjD9fhyCOY'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.c9JScP6S5B'
These old directories have been deleted.
Tue Nov 5 13:37:27 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Tue Nov 5 13:37:27 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Old pbuilder build directories found in /srv/workspace/pbuilder/
drwxr-xr-x 21 root root 4096 Oct 31 18:18 /srv/workspace/pbuilder/1893
drwxrwxr-x 21 root root 4096 Oct 31 20:33 /srv/workspace/pbuilder/16859
drwxr-xr-x 21 root root 4096 Nov 2 06:37 /srv/workspace/pbuilder/31595find: ‘/srv/workspace/pbuilder/1893’: No such file or directory
find: ‘/srv/workspace/pbuilder/16859’: No such file or directory
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'odxu4c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins12031758415245097079.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on odxu4c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_maintenance_armhf_odxu4c #14033
From jenkins at jenkins.debian.net Tue Nov 5 13:38:05 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:38:05 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_armhf_odxu4c #1327
Message-ID: <1164273349.37.1572961085413.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 28.23 KB...]
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base-new.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/11025 and its subdirectories
W: /root/.pbuilderrc does not exist
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base-new.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
Configure the chroot to use the reproducible team experimental archive...
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Get:2 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease [2863 B]
Get:3 http://tests.reproducible-builds.org/debian/repository/debian ./ Packages [7361 B]
Fetched 10.2 kB in 2s (5839 B/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Package files:
100 /var/lib/dpkg/status
release a=now
1001 http://tests.reproducible-builds.org/debian/repository/debian ./ Packages
release o=reproducible,c=
origin tests.reproducible-builds.org
500 http://deb.debian.org/debian unstable/main armhf Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=armhf
origin deb.debian.org
Pinned packages:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============================-===================-============-===============================================================================
ii adduser 3.118 all add and remove users and groups
ii apt 1.8.4 armhf commandline package manager
ii aptitude 0.8.12-1 armhf terminal-based package manager
ii aptitude-common 0.8.12-1 all architecture independent files for the aptitude package manager
ii base-files 11 armhf Debian base system miscellaneous files
ii base-passwd 3.5.46 armhf Debian base system master password and group files
ii bash 5.0-4 armhf GNU Bourne Again SHell
ii binutils 2.33.1-2 armhf GNU assembler, linker and binary utilities
ii binutils-arm-linux-gnueabihf 2.33.1-2 armhf GNU binary utilities, for arm-linux-gnueabihf target
ii binutils-common:armhf 2.33.1-2 armhf Common files for the GNU assembler, linker and binary utilities
ii bsdutils 1:2.34-0.1 armhf basic utilities from 4.4BSD-Lite
ii build-essential 12.8 armhf Informational list of build-essential packages
ii bzip2 1.0.8-2 armhf high-quality block-sorting file compressor - utilities
ii coreutils 8.30-3 armhf GNU core utilities
ii cpp 4:9.2.1-3.1 armhf GNU C preprocessor (cpp)
ii cpp-9 9.2.1-17 armhf GNU C preprocessor
ii dash 0.5.10.2-6 armhf POSIX-compliant shell
ii debconf 1.5.73 all Debian configuration management system
ii debian-archive-keyring 2019.1 all GnuPG archive keys of the Debian archive
ii debianutils 4.9 armhf Miscellaneous utilities specific to Debian
ii diffutils 1:3.7-3 armhf File comparison utilities
ii disorderfs 0.5.6-2 armhf FUSE filesystem that introduces non-determinism
ii dpkg 1.19.7 armhf Debian package management system
ii dpkg-dev 1.19.7 all Debian package development tools
ii e2fsprogs 1.45.4-1 armhf ext2/ext3/ext4 file system utilities
ii fakeroot 1.24-1 armhf tool for simulating superuser privileges
ii fdisk 2.34-0.1 armhf collection of partitioning utilities
ii findutils 4.7.0-1 armhf utilities for finding files--find, xargs
ii fuse 2.9.9-2 armhf Filesystem in Userspace
ii g++ 4:9.2.1-3.1 armhf GNU C++ compiler
ii g++-9 9.2.1-17 armhf GNU C++ compiler
ii gcc 4:9.2.1-3.1 armhf GNU C compiler
ii gcc-9 9.2.1-17 armhf GNU C compiler
ii gcc-9-base:armhf 9.2.1-17 armhf GCC, the GNU Compiler Collection (base package)
ii gpgv 2.2.17-3 armhf GNU privacy guard - signature verification tool
ii grep 3.3-1 armhf GNU grep, egrep and fgrep
ii gzip 1.9-3 armhf GNU compression utilities
ii hostname 3.22 armhf utility to set/show the host name or domain name
ii init-system-helpers 1.57 all helper tools for all init systems
ii libacl1:armhf 2.2.53-5 armhf access control list - shared library
ii libapt-pkg5.0:armhf 1.8.4 armhf package management runtime library
ii libasan5:armhf 9.2.1-17 armhf AddressSanitizer -- a fast memory error detector
ii libatomic1:armhf 9.2.1-17 armhf support library providing __atomic built-in functions
ii libattr1:armhf 1:2.4.48-5 armhf extended attribute handling - shared library
ii libaudit-common 1:2.8.5-2 all Dynamic library for security auditing - common files
ii libaudit1:armhf 1:2.8.5-2 armhf Dynamic library for security auditing
ii libbinutils:armhf 2.33.1-2 armhf GNU binary utilities (private shared library)
ii libblkid1:armhf 2.34-0.1 armhf block device ID library
ii libboost-iostreams1.67.0:armhf 1.67.0-13 armhf Boost.Iostreams Library
ii libbz2-1.0:armhf 1.0.8-2 armhf high-quality block-sorting file compressor library - runtime
ii libc-bin 2.29-3 armhf GNU C Library: Binaries
ii libc-dev-bin 2.29-3 armhf GNU C Library: Development binaries
ii libc-l10n 2.29-3 all GNU C Library: localization files
ii libc6:armhf 2.29-3 armhf GNU C Library: Shared libraries
ii libc6-dev:armhf 2.29-3 armhf GNU C Library: Development Libraries and Header Files
ii libcap-ng0:armhf 0.7.9-2.1 armhf An alternate POSIX capabilities library
ii libcc1-0:armhf 9.2.1-17 armhf GCC cc1 plugin for GDB
ii libcom-err2:armhf 1.45.4-1 armhf common error description library
ii libcwidget4:armhf 0.5.18-5 armhf high-level terminal interface library for C++ (runtime files)
ii libdb5.3:armhf 5.3.28+dfsg1-0.6 armhf Berkeley v5.3 Database Libraries [runtime]
ii libdebconfclient0:armhf 0.250 armhf Debian Configuration Management System (C-implementation library)
ii libdpkg-perl 1.19.7 all Dpkg perl modules
ii libext2fs2:armhf 1.45.4-1 armhf ext2/ext3/ext4 file system libraries
ii libfakeroot:armhf 1.24-1 armhf tool for simulating superuser privileges - shared libraries
ii libfdisk1:armhf 2.34-0.1 armhf fdisk partitioning library
ii libffi6:armhf 3.2.1-9 armhf Foreign Function Interface library runtime
ii libfuse2:armhf 2.9.9-2 armhf Filesystem in Userspace (library)
ii libgcc-9-dev:armhf 9.2.1-17 armhf GCC support library (development files)
ii libgcc1:armhf 1:9.2.1-17 armhf GCC support library
ii libgcrypt20:armhf 1.8.5-3 armhf LGPL Crypto library - runtime library
ii libgdbm-compat4:armhf 1.18.1-5 armhf GNU dbm database routines (legacy support runtime version)
ii libgdbm6:armhf 1.18.1-5 armhf GNU dbm database routines (runtime version)
ii libgmp10:armhf 2:6.1.2+dfsg-4 armhf Multiprecision arithmetic library
ii libgnutls30:armhf 3.6.10-4 armhf GNU TLS library - main runtime library
ii libgomp1:armhf 9.2.1-17 armhf GCC OpenMP (GOMP) support library
ii libgpg-error0:armhf 1.36-7 armhf GnuPG development runtime library
ii libhogweed5:armhf 3.5.1+really3.5.1-2 armhf low level cryptographic library (public-key cryptos)
ii libidn2-0:armhf 2.2.0-2 armhf Internationalized domain names (IDNA2008/TR46) library
ii libisl21:armhf 0.21-2 armhf manipulating sets and relations of integer points bounded by linear constraints
ii liblz4-1:armhf 1.9.2-1 armhf Fast LZ compression algorithm library - runtime
ii liblzma5:armhf 5.2.4-1+b1 armhf XZ-format compression library
ii libmount1:armhf 2.34-0.1 armhf device mounting library
ii libmpc3:armhf 1.1.0-1 armhf multiple precision complex floating-point library
ii libmpfr6:armhf 4.0.2-1 armhf multiple precision floating-point computation
ii libncursesw6:armhf 6.1+20191019-1 armhf shared libraries for terminal handling (wide character support)
ii libnettle7:armhf 3.5.1+really3.5.1-2 armhf low level cryptographic library (symmetric and one-way cryptos)
ii libp11-kit0:armhf 0.23.18.1-2 armhf library for loading and coordinating access to PKCS#11 modules - runtime
ii libpam-modules:armhf 1.3.1-5 armhf Pluggable Authentication Modules for PAM
ii libpam-modules-bin 1.3.1-5 armhf Pluggable Authentication Modules for PAM - helper binaries
ii libpam-runtime 1.3.1-5 all Runtime support for the PAM library
ii libpam0g:armhf 1.3.1-5 armhf Pluggable Authentication Modules library
ii libpcre2-8-0:armhf 10.32-5+b1 armhf New Perl Compatible Regular Expression Library- 8 bit runtime files
ii libpcre3:armhf 2:8.39-12+b1 armhf Old Perl 5 Compatible Regular Expression Library - runtime files
ii libperl5.30:armhf 5.30.0-9 armhf shared Perl library
ii libseccomp2:armhf 2.4.1-2 armhf high level interface to Linux seccomp filter
ii libselinux1:armhf 2.9-2+b2 armhf SELinux runtime shared libraries
ii libsemanage-common 2.9-3 all Common files for SELinux policy management libraries
ii libsemanage1:armhf 2.9-3 armhf SELinux policy management library
ii libsepol1:armhf 2.9-2+b2 armhf SELinux library for manipulating binary security policies
ii libsigc++-2.0-0v5:armhf 2.10.2-1 armhf type-safe Signal Framework for C++ - runtime
ii libsmartcols1:armhf 2.34-0.1 armhf smart column output alignment library
ii libsqlite3-0:armhf 3.30.1-1 armhf SQLite 3 shared library
ii libss2:armhf 1.45.4-1 armhf command-line interface parsing library
ii libstdc++-9-dev:armhf 9.2.1-17 armhf GNU Standard C++ Library v3 (development files)
ii libstdc++6:armhf 9.2.1-17 armhf GNU Standard C++ Library v3
ii libsystemd0:armhf 242-7 armhf systemd utility library
ii libtasn1-6:armhf 4.14-3 armhf Manage ASN.1 structures (runtime)
ii libtinfo6:armhf 6.1+20191019-1 armhf shared low-level terminfo library for terminal handling
ii libubsan1:armhf 9.2.1-17 armhf UBSan -- undefined behaviour sanitizer (runtime)
ii libudev1:armhf 242-7 armhf libudev shared library
ii libunistring2:armhf 0.9.10-2 armhf Unicode string library for C
ii libuuid1:armhf 2.34-0.1 armhf Universally Unique ID library
ii libxapian30:armhf 1.4.12-1 armhf Search engine library
ii libzstd1:armhf 1.4.3+dfsg-1 armhf fast lossless compression algorithm
ii linux-libc-dev:armhf 5.3.7-1 armhf Linux support headers for userspace development
ii locales-all 2.29-3 armhf GNU C Library: Precompiled locale data
ii login 1:4.7-2 armhf system login tools
ii logsave 1.45.4-1 armhf save the output of a command in a log file
ii lsb-base 11.1.0 all Linux Standard Base init script functionality
ii make 4.2.1-1.2 armhf utility for directing compilation
ii mawk 1.3.3-17+b3 armhf a pattern scanning and text processing language
ii mount 2.34-0.1 armhf tools for mounting and manipulating filesystems
ii ncurses-base 6.1+20191019-1 all basic terminal type definitions
ii ncurses-bin 6.1+20191019-1 armhf terminal-related programs and man pages
ii passwd 1:4.7-2 armhf change and administer password and group data
ii patch 2.7.6-6 armhf Apply a diff file to an original
ii perl 5.30.0-9 armhf Larry Wall's Practical Extraction and Report Language
ii perl-base 5.30.0-9 armhf minimal Perl system
ii perl-modules-5.30 5.30.0-9 all Core Perl modules
ii sed 4.7-1 armhf GNU stream editor for filtering/transforming text
ii sysvinit-utils 2.96-1 armhf System-V-like utilities
ii tar 1.30+dfsg-6 armhf GNU version of the tar archiving utility
ii tzdata 2019c-3 all time zone and daylight-saving time data
ii util-linux 2.34-0.1 armhf miscellaneous system utilities
ii xz-utils 5.2.4-1+b1 armhf XZ-format compression utilities
ii zlib1g:armhf 1:1.2.11.dfsg-1+b1 armhf compression library - runtime
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'odxu4c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins13303471193096651883.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on odxu4c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_setup_pbuilder_unstable_armhf_odxu4c #1327
From jenkins at jenkins.debian.net Tue Nov 5 13:39:53 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:39:53 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_schroot_buster_diffoscope_amd64_osuosl173 #237
In-Reply-To: <131023174.91.1572742404173.JavaMail.jenkins@jenkins>
References: <131023174.91.1572742404173.JavaMail.jenkins@jenkins>
Message-ID: <2114821757.41.1572961193023.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:40:03 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:40:03 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
haskell-package-plan #2887
In-Reply-To: <1555107126.78.1572711059012.JavaMail.jenkins@jenkins>
References: <1555107126.78.1572711059012.JavaMail.jenkins@jenkins>
Message-ID: <821668102.42.1572961203267.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:41:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:41:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_armhf_p64b #937
Message-ID: <2090088025.45.1572961318722.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on p64b-armhf-rb.debian.net (armhf p64b) in workspace
[reproducible_setup_pbuilder_unstable_armhf_p64b] $ /bin/sh -xe /tmp/jenkins203966237290809347.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Tue 5 Nov 13:41:22 UTC 2019 - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_unstable_armhf_p64b) on p64b now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "unstable" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue 5 Nov 13:41:22 UTC 2019 - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-UFSGJHC6" on p64b.
/var/cache/pbuilder/unstable-reproducible-base.tgz outdated, creating a new one...
Tue Nov 5 13:41:23 UTC 2019 - creating /var/cache/pbuilder/unstable-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://10.0.0.15:8000/ --basetgz /var/cache/pbuilder/unstable-reproducible-base-new.tgz --distribution unstable --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
I: Distribution is unstable.
I: Current time: Tue Nov 5 13:41:23 UTC 2019
I: pbuilder-time-stamp: 1572961283
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Checking Release signature
I: Valid Release signature (key id 0146DC6D4A0B2914BDED34DB648ACFD622F3D138)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
SSH EXIT CODE: 255
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:41:57 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:41:57 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_armhf_jtx1c #116
Message-ID: <522729837.44.1572961317658.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 16.74 KB...]
I: Configuring diffutils...
I: Configuring libseccomp2:armhf...
I: Configuring libsystemd0:armhf...
I: Configuring hostname...
I: Configuring libpcre3:armhf...
I: Configuring libcap-ng0:armhf...
I: Configuring libext2fs2:armhf...
I: Configuring libgmp10:armhf...
I: Configuring libp11-kit0:armhf...
I: Configuring libaudit1:armhf...
I: Configuring libuuid1:armhf...
I: Configuring libss2:armhf...
I: Configuring libpcre2-8-0:armhf...
I: Configuring libncursesw6:armhf...
I: Configuring logsave...
I: Configuring libfdisk1:armhf...
I: Configuring gpgv...
I: Configuring libstdc++6:armhf...
I: Configuring bsdutils...
I: Configuring libhogweed5:armhf...
I: Configuring e2fsprogs...
I: Configuring libselinux1:armhf...
I: Configuring libgnutls30:armhf...
I: Configuring sed...
I: Configuring findutils...
I: Configuring libmount1:armhf...
I: Configuring libapt-pkg5.0:armhf...
I: Configuring libsemanage1:armhf...
I: Configuring tar...
I: Configuring coreutils...
I: Configuring fdisk...
I: Configuring dpkg...
I: Configuring grep...
I: Configuring perl-base...
I: Configuring init-system-helpers...
I: Configuring gzip...
I: Configuring debconf...
I: Configuring tzdata...
I: Configuring libpam0g:armhf...
I: Configuring dash...
I: Configuring libpam-modules-bin...
I: Configuring libpam-modules:armhf...
I: Configuring passwd...
I: Configuring libpam-runtime...
I: Configuring login...
I: Configuring adduser...
I: Configuring apt...
I: Configuring util-linux...
I: Configuring mount...
I: Configuring sysvinit-utils...
I: Configuring libc-bin...
I: Unpacking the base system...
I: Unpacking binutils...
I: Unpacking binutils-arm-linux-gnueabihf...
I: Unpacking binutils-common:armhf...
I: Unpacking libbinutils:armhf...
I: Unpacking build-essential...
I: Unpacking bzip2...
I: Unpacking dpkg-dev...
I: Unpacking libdpkg-perl...
I: Unpacking cpp-9...
I: Unpacking g++-9...
I: Unpacking gcc-9...
I: Unpacking libasan5:armhf...
I: Unpacking libatomic1:armhf...
I: Unpacking libcc1-0:armhf...
I: Unpacking libgcc-9-dev:armhf...
I: Unpacking libgomp1:armhf...
I: Unpacking libstdc++-9-dev:armhf...
I: Unpacking libubsan1:armhf...
I: Unpacking cpp...
I: Unpacking g++...
I: Unpacking gcc...
I: Unpacking libgdbm-compat4:armhf...
I: Unpacking libgdbm6:armhf...
I: Unpacking libc-dev-bin...
I: Unpacking libc6-dev:armhf...
I: Unpacking libisl21:armhf...
I: Unpacking linux-libc-dev:armhf...
I: Unpacking make...
I: Unpacking libmpc3:armhf...
I: Unpacking libmpfr6:armhf...
I: Unpacking patch...
I: Unpacking libperl5.30:armhf...
I: Unpacking perl...
I: Unpacking perl-modules-5.30...
I: Unpacking xz-utils...
I: Configuring the base system...
I: Configuring libisl21:armhf...
I: Configuring perl-modules-5.30...
I: Configuring binutils-common:armhf...
I: Configuring linux-libc-dev:armhf...
I: Configuring libgomp1:armhf...
I: Configuring bzip2...
I: Configuring libasan5:armhf...
I: Configuring make...
I: Configuring libmpfr6:armhf...
I: Configuring xz-utils...
I: Configuring libmpc3:armhf...
I: Configuring libatomic1:armhf...
I: Configuring patch...
I: Configuring libubsan1:armhf...
I: Configuring cpp-9...
I: Configuring libbinutils:armhf...
I: Configuring libc-dev-bin...
I: Configuring binutils-arm-linux-gnueabihf...
I: Configuring libcc1-0:armhf...
I: Configuring libgdbm6:armhf...
I: Configuring binutils...
I: Configuring libgcc-9-dev:armhf...
I: Configuring libgdbm-compat4:armhf...
I: Configuring cpp...
I: Configuring libperl5.30:armhf...
I: Configuring libc6-dev:armhf...
I: Configuring gcc-9...
I: Configuring libstdc++-9-dev:armhf...
I: Configuring gcc...
I: Configuring perl...
I: Configuring g++-9...
I: Configuring libdpkg-perl...
I: Configuring g++...
I: Configuring dpkg-dev...
I: Configuring build-essential...
I: Configuring libc-bin...
I: Base system installed successfully.
I: debootstrap finished
I: copying local configuration
I: Installing apt-lines
I: Refreshing the base.tgz
I: upgrading packages
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: installing dummy policy-rc.d
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
D: not removing ccache as not installed
D: not removing eatmydata as not installed
D: not removing debdelta as not installed
Reading package lists...
Building dependency tree...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
The following additional packages will be installed:
aptitude-common fuse libboost-iostreams1.67.0 libc-l10n libcwidget4
libfakeroot libfuse2 libsigc++-2.0-0v5 libsqlite3-0 libxapian30
Suggested packages:
aptitude-doc-en | aptitude-doc apt-xapian-index debtags tasksel
libcwidget-dev xapian-tools
Recommended packages:
libparse-debianchangelog-perl sensible-utils
The following NEW packages will be installed:
aptitude aptitude-common disorderfs fakeroot fuse libboost-iostreams1.67.0
libc-l10n libcwidget4 libfakeroot libfuse2 libsigc++-2.0-0v5 libsqlite3-0
libxapian30 locales-all
0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.1 MB of archives.
After this operation, 250 MB of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libc-l10n all 2.29-2 [857 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf aptitude-common all 0.8.12-1 [1768 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libboost-iostreams1.67.0 armhf 1.67.0-13 [245 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libsigc++-2.0-0v5 armhf 2.10.2-1 [62.3 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libcwidget4 armhf 0.5.18-5 [277 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libsqlite3-0 armhf 3.30.1-1 [570 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libxapian30 armhf 1.4.12-1 [974 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf aptitude armhf 0.8.12-1 [1187 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libfuse2 armhf 2.9.9-2 [118 kB]
Get:10 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf fuse armhf 2.9.9-2 [70.5 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf disorderfs armhf 0.5.6-2 [19.5 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libfakeroot armhf 1.24-1 [42.7 kB]
Get:13 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf fakeroot armhf 1.24-1 [84.2 kB]
Get:14 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf locales-all armhf 2.29-2 [10.8 MB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 17.1 MB in 3s (5474 kB/s)
Selecting previously unselected package libc-l10n.
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 11777 files and directories currently installed.)
Preparing to unpack .../00-libc-l10n_2.29-2_all.deb ...
Unpacking libc-l10n (2.29-2) ...
Selecting previously unselected package aptitude-common.
Preparing to unpack .../01-aptitude-common_0.8.12-1_all.deb ...
Unpacking aptitude-common (0.8.12-1) ...
Selecting previously unselected package libboost-iostreams1.67.0:armhf.
Preparing to unpack .../02-libboost-iostreams1.67.0_1.67.0-13_armhf.deb ...
Unpacking libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Selecting previously unselected package libsigc++-2.0-0v5:armhf.
Preparing to unpack .../03-libsigc++-2.0-0v5_2.10.2-1_armhf.deb ...
Unpacking libsigc++-2.0-0v5:armhf (2.10.2-1) ...
Selecting previously unselected package libcwidget4:armhf.
Preparing to unpack .../04-libcwidget4_0.5.18-5_armhf.deb ...
Unpacking libcwidget4:armhf (0.5.18-5) ...
Selecting previously unselected package libsqlite3-0:armhf.
Preparing to unpack .../05-libsqlite3-0_3.30.1-1_armhf.deb ...
Unpacking libsqlite3-0:armhf (3.30.1-1) ...
Selecting previously unselected package libxapian30:armhf.
Preparing to unpack .../06-libxapian30_1.4.12-1_armhf.deb ...
Unpacking libxapian30:armhf (1.4.12-1) ...
Selecting previously unselected package aptitude.
Preparing to unpack .../07-aptitude_0.8.12-1_armhf.deb ...
Unpacking aptitude (0.8.12-1) ...
Selecting previously unselected package libfuse2:armhf.
Preparing to unpack .../08-libfuse2_2.9.9-2_armhf.deb ...
Unpacking libfuse2:armhf (2.9.9-2) ...
Selecting previously unselected package fuse.
Preparing to unpack .../09-fuse_2.9.9-2_armhf.deb ...
Unpacking fuse (2.9.9-2) ...
Selecting previously unselected package disorderfs.
Preparing to unpack .../10-disorderfs_0.5.6-2_armhf.deb ...
Unpacking disorderfs (0.5.6-2) ...
Selecting previously unselected package libfakeroot:armhf.
Preparing to unpack .../11-libfakeroot_1.24-1_armhf.deb ...
Unpacking libfakeroot:armhf (1.24-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../12-fakeroot_1.24-1_armhf.deb ...
Unpacking fakeroot (1.24-1) ...
Selecting previously unselected package locales-all.
Preparing to unpack .../13-locales-all_2.29-2_armhf.deb ...
Unpacking locales-all (2.29-2) ...
Setting up libxapian30:armhf (1.4.12-1) ...
Setting up libc-l10n (2.29-2) ...
Setting up libsqlite3-0:armhf (3.30.1-1) ...
Setting up libfuse2:armhf (2.9.9-2) ...
Setting up locales-all (2.29-2) ...
Setting up libfakeroot:armhf (1.24-1) ...
Setting up fakeroot (1.24-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libsigc++-2.0-0v5:armhf (2.10.2-1) ...
Setting up aptitude-common (0.8.12-1) ...
Setting up libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Setting up fuse (2.9.9-2) ...
Setting up libcwidget4:armhf (0.5.18-5) ...
Setting up disorderfs (0.5.6-2) ...
Setting up aptitude (0.8.12-1) ...
update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode
Processing triggers for libc-bin (2.29-2) ...
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base-new.tgz]
SSH EXIT CODE: 255
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:41:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:41:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_armhf_p64b #938
Message-ID: <1765017916.46.1572961318904.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 16.91 KB...]
I: Configuring libcap-ng0:armhf...
I: Configuring libext2fs2:armhf...
I: Configuring libgmp10:armhf...
I: Configuring libp11-kit0:armhf...
I: Configuring libaudit1:armhf...
I: Configuring libuuid1:armhf...
I: Configuring libss2:armhf...
I: Configuring libpcre2-8-0:armhf...
I: Configuring libncursesw6:armhf...
I: Configuring logsave...
I: Configuring libfdisk1:armhf...
I: Configuring gpgv...
I: Configuring libstdc++6:armhf...
I: Configuring bsdutils...
I: Configuring libhogweed5:armhf...
I: Configuring e2fsprogs...
I: Configuring libselinux1:armhf...
I: Configuring libgnutls30:armhf...
I: Configuring sed...
I: Configuring findutils...
I: Configuring libmount1:armhf...
I: Configuring libapt-pkg5.0:armhf...
I: Configuring libsemanage1:armhf...
I: Configuring tar...
I: Configuring coreutils...
I: Configuring fdisk...
I: Configuring dpkg...
I: Configuring grep...
I: Configuring perl-base...
I: Configuring init-system-helpers...
I: Configuring gzip...
I: Configuring debconf...
I: Configuring tzdata...
I: Configuring libpam0g:armhf...
I: Configuring dash...
I: Configuring libpam-modules-bin...
I: Configuring libpam-modules:armhf...
I: Configuring passwd...
I: Configuring libpam-runtime...
I: Configuring login...
I: Configuring adduser...
I: Configuring apt...
I: Configuring util-linux...
I: Configuring mount...
I: Configuring sysvinit-utils...
I: Configuring libc-bin...
I: Unpacking the base system...
I: Unpacking binutils...
I: Unpacking binutils-arm-linux-gnueabihf...
I: Unpacking binutils-common:armhf...
I: Unpacking libbinutils:armhf...
I: Unpacking build-essential...
I: Unpacking bzip2...
I: Unpacking dpkg-dev...
I: Unpacking libdpkg-perl...
I: Unpacking cpp-9...
I: Unpacking g++-9...
I: Unpacking gcc-9...
I: Unpacking libasan5:armhf...
I: Unpacking libatomic1:armhf...
I: Unpacking libcc1-0:armhf...
I: Unpacking libgcc-9-dev:armhf...
I: Unpacking libgomp1:armhf...
I: Unpacking libstdc++-9-dev:armhf...
I: Unpacking libubsan1:armhf...
I: Unpacking cpp...
I: Unpacking g++...
I: Unpacking gcc...
I: Unpacking libgdbm-compat4:armhf...
I: Unpacking libgdbm6:armhf...
I: Unpacking libc-dev-bin...
I: Unpacking libc6-dev:armhf...
I: Unpacking libisl21:armhf...
I: Unpacking linux-libc-dev:armhf...
I: Unpacking make...
I: Unpacking libmpc3:armhf...
I: Unpacking libmpfr6:armhf...
I: Unpacking patch...
I: Unpacking libperl5.30:armhf...
I: Unpacking perl...
I: Unpacking perl-modules-5.30...
I: Unpacking xz-utils...
I: Configuring the base system...
I: Configuring libisl21:armhf...
I: Configuring perl-modules-5.30...
I: Configuring binutils-common:armhf...
I: Configuring linux-libc-dev:armhf...
I: Configuring libgomp1:armhf...
I: Configuring bzip2...
I: Configuring libasan5:armhf...
I: Configuring make...
I: Configuring libmpfr6:armhf...
I: Configuring xz-utils...
I: Configuring libmpc3:armhf...
I: Configuring libatomic1:armhf...
I: Configuring patch...
I: Configuring libubsan1:armhf...
I: Configuring cpp-9...
I: Configuring libbinutils:armhf...
I: Configuring libc-dev-bin...
I: Configuring binutils-arm-linux-gnueabihf...
I: Configuring libcc1-0:armhf...
I: Configuring libgdbm6:armhf...
I: Configuring binutils...
I: Configuring libgcc-9-dev:armhf...
I: Configuring libgdbm-compat4:armhf...
I: Configuring cpp...
I: Configuring libperl5.30:armhf...
I: Configuring libc6-dev:armhf...
I: Configuring gcc-9...
I: Configuring libstdc++-9-dev:armhf...
I: Configuring gcc...
I: Configuring perl...
I: Configuring g++-9...
I: Configuring libdpkg-perl...
I: Configuring g++...
I: Configuring dpkg-dev...
I: Configuring build-essential...
I: Configuring libc-bin...
I: Base system installed successfully.
I: debootstrap finished
I: copying local configuration
I: Installing apt-lines
I: Refreshing the base.tgz
I: upgrading packages
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: installing dummy policy-rc.d
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
D: not removing ccache as not installed
D: not removing eatmydata as not installed
D: not removing debdelta as not installed
Reading package lists...
Building dependency tree...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
The following additional packages will be installed:
aptitude-common fuse libboost-iostreams1.67.0 libc-l10n libcwidget4
libfakeroot libfuse2 libsigc++-2.0-0v5 libsqlite3-0 libxapian30
Suggested packages:
aptitude-doc-en | aptitude-doc apt-xapian-index debtags tasksel
libcwidget-dev xapian-tools
Recommended packages:
libparse-debianchangelog-perl sensible-utils
The following NEW packages will be installed:
aptitude aptitude-common disorderfs fakeroot fuse libboost-iostreams1.67.0
libc-l10n libcwidget4 libfakeroot libfuse2 libsigc++-2.0-0v5 libsqlite3-0
libxapian30 locales-all
0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.0 MB of archives.
After this operation, 250 MB of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libc-l10n all 2.29-3 [858 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main armhf aptitude-common all 0.8.12-1 [1768 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libboost-iostreams1.67.0 armhf 1.67.0-13 [245 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libsigc++-2.0-0v5 armhf 2.10.2-1 [62.3 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libcwidget4 armhf 0.5.18-5 [277 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libsqlite3-0 armhf 3.30.1-1 [570 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libxapian30 armhf 1.4.12-1 [974 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian unstable/main armhf aptitude armhf 0.8.12-1 [1187 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libfuse2 armhf 2.9.9-2 [118 kB]
Get:10 http://cdn-fastly.deb.debian.org/debian unstable/main armhf fuse armhf 2.9.9-2 [70.5 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian unstable/main armhf disorderfs armhf 0.5.6-2 [19.5 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libfakeroot armhf 1.24-1 [42.7 kB]
Get:13 http://cdn-fastly.deb.debian.org/debian unstable/main armhf fakeroot armhf 1.24-1 [84.2 kB]
Get:14 http://cdn-fastly.deb.debian.org/debian unstable/main armhf locales-all armhf 2.29-3 [10.7 MB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 17.0 MB in 4s (4816 kB/s)
Selecting previously unselected package libc-l10n.
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 11775 files and directories currently installed.)
Preparing to unpack .../00-libc-l10n_2.29-3_all.deb ...
Unpacking libc-l10n (2.29-3) ...
Selecting previously unselected package aptitude-common.
Preparing to unpack .../01-aptitude-common_0.8.12-1_all.deb ...
Unpacking aptitude-common (0.8.12-1) ...
Selecting previously unselected package libboost-iostreams1.67.0:armhf.
Preparing to unpack .../02-libboost-iostreams1.67.0_1.67.0-13_armhf.deb ...
Unpacking libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Selecting previously unselected package libsigc++-2.0-0v5:armhf.
Preparing to unpack .../03-libsigc++-2.0-0v5_2.10.2-1_armhf.deb ...
Unpacking libsigc++-2.0-0v5:armhf (2.10.2-1) ...
Selecting previously unselected package libcwidget4:armhf.
Preparing to unpack .../04-libcwidget4_0.5.18-5_armhf.deb ...
Unpacking libcwidget4:armhf (0.5.18-5) ...
Selecting previously unselected package libsqlite3-0:armhf.
Preparing to unpack .../05-libsqlite3-0_3.30.1-1_armhf.deb ...
Unpacking libsqlite3-0:armhf (3.30.1-1) ...
Selecting previously unselected package libxapian30:armhf.
Preparing to unpack .../06-libxapian30_1.4.12-1_armhf.deb ...
Unpacking libxapian30:armhf (1.4.12-1) ...
Selecting previously unselected package aptitude.
Preparing to unpack .../07-aptitude_0.8.12-1_armhf.deb ...
Unpacking aptitude (0.8.12-1) ...
Selecting previously unselected package libfuse2:armhf.
Preparing to unpack .../08-libfuse2_2.9.9-2_armhf.deb ...
Unpacking libfuse2:armhf (2.9.9-2) ...
Selecting previously unselected package fuse.
Preparing to unpack .../09-fuse_2.9.9-2_armhf.deb ...
Unpacking fuse (2.9.9-2) ...
Selecting previously unselected package disorderfs.
Preparing to unpack .../10-disorderfs_0.5.6-2_armhf.deb ...
Unpacking disorderfs (0.5.6-2) ...
Selecting previously unselected package libfakeroot:armhf.
Preparing to unpack .../11-libfakeroot_1.24-1_armhf.deb ...
Unpacking libfakeroot:armhf (1.24-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../12-fakeroot_1.24-1_armhf.deb ...
Unpacking fakeroot (1.24-1) ...
Selecting previously unselected package locales-all.
Preparing to unpack .../13-locales-all_2.29-3_armhf.deb ...
Unpacking locales-all (2.29-3) ...
Setting up libxapian30:armhf (1.4.12-1) ...
Setting up libc-l10n (2.29-3) ...
Setting up libsqlite3-0:armhf (3.30.1-1) ...
Setting up libfuse2:armhf (2.9.9-2) ...
Setting up locales-all (2.29-3) ...
Setting up libfakeroot:armhf (1.24-1) ...
Setting up fakeroot (1.24-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libsigc++-2.0-0v5:armhf (2.10.2-1) ...
Setting up aptitude-common (0.8.12-1) ...
Setting up libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Setting up fuse (2.9.9-2) ...
Setting up libcwidget4:armhf (0.5.18-5) ...
Setting up disorderfs (0.5.6-2) ...
Setting up aptitude (0.8.12-1) ...
update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode
Processing triggers for libc-bin (2.29-3) ...
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/experimental-reproducible-base-new.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/24398 and its subdirectories
W: /root/.pbuilderrc does not exist
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base-new.tgz]
SSH EXIT CODE: 255
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:41:57 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:41:57 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_armhf_jtx1c #699
Message-ID: <946426681.43.1572961317658.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 17.46 KB...]
I: Configuring fdisk...
I: Configuring dpkg...
I: Configuring grep...
I: Configuring perl-base...
I: Configuring init-system-helpers...
I: Configuring gzip...
I: Configuring debconf...
I: Configuring tzdata...
I: Configuring libpam0g:armhf...
I: Configuring dash...
I: Configuring libpam-modules-bin...
I: Configuring libpam-modules:armhf...
I: Configuring passwd...
I: Configuring libpam-runtime...
I: Configuring login...
I: Configuring adduser...
I: Configuring apt...
I: Configuring util-linux...
I: Configuring mount...
I: Configuring sysvinit-utils...
I: Configuring libc-bin...
I: Unpacking the base system...
I: Unpacking binutils...
I: Unpacking binutils-arm-linux-gnueabihf...
I: Unpacking binutils-common:armhf...
I: Unpacking libbinutils:armhf...
I: Unpacking build-essential...
I: Unpacking bzip2...
I: Unpacking dpkg-dev...
I: Unpacking libdpkg-perl...
I: Unpacking cpp-8...
I: Unpacking g++-8...
I: Unpacking gcc-8...
I: Unpacking libasan5:armhf...
I: Unpacking libatomic1:armhf...
I: Unpacking libcc1-0:armhf...
I: Unpacking libgcc-8-dev:armhf...
I: Unpacking libgomp1:armhf...
I: Unpacking libstdc++-8-dev:armhf...
I: Unpacking libubsan1:armhf...
I: Unpacking cpp...
I: Unpacking g++...
I: Unpacking gcc...
I: Unpacking libgdbm-compat4:armhf...
I: Unpacking libgdbm6:armhf...
I: Unpacking libc-dev-bin...
I: Unpacking libc6-dev:armhf...
I: Unpacking libisl19:armhf...
I: Unpacking linux-libc-dev:armhf...
I: Unpacking make...
I: Unpacking libmpc3:armhf...
I: Unpacking libmpfr6:armhf...
I: Unpacking patch...
I: Unpacking libperl5.28:armhf...
I: Unpacking perl...
I: Unpacking perl-modules-5.28...
I: Unpacking xz-utils...
I: Configuring the base system...
I: Configuring perl-modules-5.28...
I: Configuring binutils-common:armhf...
I: Configuring linux-libc-dev:armhf...
I: Configuring libgomp1:armhf...
I: Configuring bzip2...
I: Configuring libasan5:armhf...
I: Configuring make...
I: Configuring libmpfr6:armhf...
I: Configuring xz-utils...
I: Configuring libmpc3:armhf...
I: Configuring libatomic1:armhf...
I: Configuring patch...
I: Configuring libubsan1:armhf...
I: Configuring libisl19:armhf...
I: Configuring libbinutils:armhf...
I: Configuring cpp-8...
I: Configuring libc-dev-bin...
I: Configuring binutils-arm-linux-gnueabihf...
I: Configuring libcc1-0:armhf...
I: Configuring libgdbm6:armhf...
I: Configuring binutils...
I: Configuring libgdbm-compat4:armhf...
I: Configuring libgcc-8-dev:armhf...
I: Configuring libperl5.28:armhf...
I: Configuring cpp...
I: Configuring libc6-dev:armhf...
I: Configuring libstdc++-8-dev:armhf...
I: Configuring gcc-8...
I: Configuring gcc...
I: Configuring perl...
I: Configuring libdpkg-perl...
I: Configuring g++-8...
I: Configuring dpkg-dev...
I: Configuring g++...
I: Configuring build-essential...
I: Configuring libc-bin...
I: Base system installed successfully.
I: debootstrap finished
I: copying local configuration
I: Installing apt-lines
I: Refreshing the base.tgz
I: upgrading packages
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: installing dummy policy-rc.d
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
D: not removing ccache as not installed
D: not removing eatmydata as not installed
D: not removing debdelta as not installed
Reading package lists...
Building dependency tree...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
build-essential is already the newest version (12.6).
dpkg-dev is already the newest version (1.19.7).
The following additional packages will be installed:
aptitude-common fuse libboost-iostreams1.67.0 libboost-system1.67.0
libc-l10n libcwidget3v5 libfakeroot libfuse2 libsigc++-2.0-0v5 libsqlite3-0
libxapian30
Suggested packages:
aptitude-doc-en | aptitude-doc apt-xapian-index debtags tasksel
libcwidget-dev xapian-tools
Recommended packages:
libparse-debianchangelog-perl sensible-utils
The following NEW packages will be installed:
aptitude aptitude-common disorderfs fakeroot fuse libboost-iostreams1.67.0
libboost-system1.67.0 libc-l10n libcwidget3v5 libfakeroot libfuse2
libsigc++-2.0-0v5 libsqlite3-0 libxapian30 locales-all
0 upgraded, 15 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.2 MB of archives.
After this operation, 252 MB of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian buster/main armhf libc-l10n all 2.28-10 [847 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian buster/main armhf aptitude-common all 0.8.11-7 [1768 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian buster/main armhf libboost-iostreams1.67.0 armhf 1.67.0-13 [245 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian buster/main armhf libboost-system1.67.0 armhf 1.67.0-13 [228 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian buster/main armhf libsigc++-2.0-0v5 armhf 2.10.1-2 [62.1 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian buster/main armhf libcwidget3v5 armhf 0.5.17-11 [267 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian buster/main armhf libsqlite3-0 armhf 3.27.2-3 [560 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian buster/main armhf libxapian30 armhf 1.4.11-1 [982 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian buster/main armhf aptitude armhf 0.8.11-7 [1158 kB]
Get:10 http://cdn-fastly.deb.debian.org/debian buster/main armhf libfuse2 armhf 2.9.9-1 [117 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian buster/main armhf fuse armhf 2.9.9-1 [70.3 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian buster/main armhf disorderfs armhf 0.5.6-1 [19.5 kB]
Get:13 http://cdn-fastly.deb.debian.org/debian buster/main armhf libfakeroot armhf 1.23-1 [41.8 kB]
Get:14 http://cdn-fastly.deb.debian.org/debian buster/main armhf fakeroot armhf 1.23-1 [83.8 kB]
Get:15 http://cdn-fastly.deb.debian.org/debian buster/main armhf locales-all armhf 2.28-10 [10.7 MB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 17.2 MB in 3s (5227 kB/s)
Selecting previously unselected package libc-l10n.
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 11626 files and directories currently installed.)
Preparing to unpack .../00-libc-l10n_2.28-10_all.deb ...
Unpacking libc-l10n (2.28-10) ...
Selecting previously unselected package aptitude-common.
Preparing to unpack .../01-aptitude-common_0.8.11-7_all.deb ...
Unpacking aptitude-common (0.8.11-7) ...
Selecting previously unselected package libboost-iostreams1.67.0:armhf.
Preparing to unpack .../02-libboost-iostreams1.67.0_1.67.0-13_armhf.deb ...
Unpacking libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Selecting previously unselected package libboost-system1.67.0:armhf.
Preparing to unpack .../03-libboost-system1.67.0_1.67.0-13_armhf.deb ...
Unpacking libboost-system1.67.0:armhf (1.67.0-13) ...
Selecting previously unselected package libsigc++-2.0-0v5:armhf.
Preparing to unpack .../04-libsigc++-2.0-0v5_2.10.1-2_armhf.deb ...
Unpacking libsigc++-2.0-0v5:armhf (2.10.1-2) ...
Selecting previously unselected package libcwidget3v5:armhf.
Preparing to unpack .../05-libcwidget3v5_0.5.17-11_armhf.deb ...
Unpacking libcwidget3v5:armhf (0.5.17-11) ...
Selecting previously unselected package libsqlite3-0:armhf.
Preparing to unpack .../06-libsqlite3-0_3.27.2-3_armhf.deb ...
Unpacking libsqlite3-0:armhf (3.27.2-3) ...
Selecting previously unselected package libxapian30:armhf.
Preparing to unpack .../07-libxapian30_1.4.11-1_armhf.deb ...
Unpacking libxapian30:armhf (1.4.11-1) ...
Selecting previously unselected package aptitude.
Preparing to unpack .../08-aptitude_0.8.11-7_armhf.deb ...
Unpacking aptitude (0.8.11-7) ...
Selecting previously unselected package libfuse2:armhf.
Preparing to unpack .../09-libfuse2_2.9.9-1_armhf.deb ...
Unpacking libfuse2:armhf (2.9.9-1) ...
Selecting previously unselected package fuse.
Preparing to unpack .../10-fuse_2.9.9-1_armhf.deb ...
Unpacking fuse (2.9.9-1) ...
Selecting previously unselected package disorderfs.
Preparing to unpack .../11-disorderfs_0.5.6-1_armhf.deb ...
Unpacking disorderfs (0.5.6-1) ...
Selecting previously unselected package libfakeroot:armhf.
Preparing to unpack .../12-libfakeroot_1.23-1_armhf.deb ...
Unpacking libfakeroot:armhf (1.23-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../13-fakeroot_1.23-1_armhf.deb ...
Unpacking fakeroot (1.23-1) ...
Selecting previously unselected package locales-all.
Preparing to unpack .../14-locales-all_2.28-10_armhf.deb ...
Unpacking locales-all (2.28-10) ...
Setting up libxapian30:armhf (1.4.11-1) ...
Setting up libc-l10n (2.28-10) ...
Setting up libsqlite3-0:armhf (3.27.2-3) ...
Setting up libfuse2:armhf (2.9.9-1) ...
Setting up locales-all (2.28-10) ...
Setting up libfakeroot:armhf (1.23-1) ...
Setting up fakeroot (1.23-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libsigc++-2.0-0v5:armhf (2.10.1-2) ...
Setting up aptitude-common (0.8.11-7) ...
Setting up libboost-iostreams1.67.0:armhf (1.67.0-13) ...
Setting up libboost-system1.67.0:armhf (1.67.0-13) ...
Setting up libcwidget3v5:armhf (0.5.17-11) ...
Setting up fuse (2.9.9-1) ...
Setting up disorderfs (0.5.6-1) ...
Setting up aptitude (0.8.11-7) ...
update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode
Processing triggers for libc-bin (2.28-10) ...
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base-new.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/7680 and its subdirectories
W: /root/.pbuilderrc does not exist
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/buster-reproducible-base-new.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
Preseeding man-db/auto-update to false
Configuring dpkg to not fsync()
I: Saving the results, modifications to this session will persist
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base-new.tgz]
SSH EXIT CODE: 255
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:41:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:41:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_p64b #10707
In-Reply-To: <1985912290.138.1572762150101.JavaMail.jenkins@jenkins>
References: <1985912290.138.1572762150101.JavaMail.jenkins@jenkins>
Message-ID: <1448830695.47.1572961318905.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 80.68 KB...]
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease [109 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages.diff/Index [27.9 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-03-0818.43.pdiff [1369 B]
Get:4 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-03-1415.23.pdiff [46 B]
Get:5 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-04-0216.34.pdiff [121 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-04-1413.57.pdiff [544 B]
Get:7 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-04-2018.45.pdiff [1809 B]
Get:8 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-05-0216.09.pdiff [19.1 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-05-0216.09.pdiff [19.1 kB]
Fetched 280 kB in 8s (36.9 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
libgnutls30
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 1106 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf libgnutls30 armhf 3.6.10-4 [1106 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 1106 kB in 4s (251 kB/s)
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19074 files and directories currently installed.)
Preparing to unpack .../libgnutls30_3.6.10-4_armhf.deb ...
Unpacking libgnutls30:armhf (3.6.10-4) over (3.6.10-3) ...
Setting up libgnutls30:armhf (3.6.10-4) ...
Processing triggers for libc-bin (2.29-2) ...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/1545 and its subdirectories
Tue Nov 5 13:34:55 UTC 2019 - updating the unstable/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main Sources.diff/Index [27.9 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages.diff/Index [27.9 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en.diff/Index [27.9 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-03-0818.43.pdiff [5268 B]
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-03-1415.23.pdiff [8461 B]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-03-2017.32.pdiff [15.3 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-04-0216.34.pdiff [11.3 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-04-0817.44.pdiff [6440 B]
Get:10 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-04-1413.57.pdiff [6628 B]
Get:11 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-04-2018.45.pdiff [11.5 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-05-0216.09.pdiff [9124 B]
Get:13 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-05-0848.05.pdiff [7632 B]
Get:14 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-0818.43.pdiff [5705 B]
Get:15 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-1415.23.pdiff [3903 B]
Get:16 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-2017.32.pdiff [13.7 kB]
Get:17 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-0216.34.pdiff [13.1 kB]
Get:18 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-0817.44.pdiff [15.9 kB]
Get:19 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-1413.57.pdiff [9214 B]
Get:20 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-2018.45.pdiff [14.7 kB]
Get:21 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0216.09.pdiff [25.4 kB]
Get:22 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0848.05.pdiff [5937 B]
Get:13 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-05-0848.05.pdiff [7632 B]
Get:22 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0848.05.pdiff [5937 B]
Get:23 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-03-0818.43.pdiff [515 B]
Get:24 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-03-1415.23.pdiff [255 B]
Get:25 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-03-2017.32.pdiff [1509 B]
Get:26 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-04-0216.34.pdiff [927 B]
Get:27 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-04-0817.44.pdiff [249 B]
Get:28 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-04-1413.57.pdiff [310 B]
Get:29 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-04-2018.45.pdiff [1528 B]
Get:30 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-05-0216.09.pdiff [66 B]
Get:31 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-05-0848.05.pdiff [113 B]
Get:31 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-05-0848.05.pdiff [113 B]
Fetched 417 kB in 15s (28.5 kB/s)
Reading package lists...
Tue Nov 5 13:35:18 UTC 2019 - updating pbuilder for unstable/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 13:35:18 UTC 2019
I: pbuilder-time-stamp: 1572960918
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Get:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages.diff/Index [27.9 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-0818.43.pdiff [5705 B]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-1415.23.pdiff [3903 B]
Hit:5 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-03-2017.32.pdiff [13.7 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-0216.34.pdiff [13.1 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-0817.44.pdiff [15.9 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-1413.57.pdiff [9214 B]
Get:10 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-04-2018.45.pdiff [14.7 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0216.09.pdiff [25.4 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0848.05.pdiff [5937 B]
Get:12 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-0848.05.pdiff [5937 B]
Fetched 274 kB in 9s (29.5 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
cpp-9 g++-9 gcc-9 gcc-9-base libasan5 libatomic1 libcc1-0 libgcc-9-dev
libgcc1 libgomp1 liblz4-1 libstdc++-9-dev libstdc++6 libubsan1
14 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 25.4 MB of archives.
After this operation, 1024 B of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libcc1-0 armhf 9.2.1-17 [39.3 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libgomp1 armhf 9.2.1-17 [75.1 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libatomic1 armhf 9.2.1-17 [6872 B]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libasan5 armhf 9.2.1-17 [369 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libubsan1 armhf 9.2.1-17 [113 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main armhf gcc-9-base armhf 9.2.1-17 [194 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libstdc++6 armhf 9.2.1-17 [431 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian unstable/main armhf g++-9 armhf 9.2.1-17 [7558 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libstdc++-9-dev armhf 9.2.1-17 [1751 kB]
Get:10 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libgcc-9-dev armhf 9.2.1-17 [663 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian unstable/main armhf gcc-9 armhf 9.2.1-17 [7215 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian unstable/main armhf cpp-9 armhf 9.2.1-17 [6853 kB]
Get:13 http://cdn-fastly.deb.debian.org/debian unstable/main armhf libgcc1 armhf 1:9.2.1-17 [37.3 kB]
Get:14 http://cdn-fastly.deb.debian.org/debian unstable/main armhf liblz4-1 armhf 1.9.2-1 [52.6 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 25.4 MB in 5s (5386 kB/s)
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19072 files and directories currently installed.)
Preparing to unpack .../0-libcc1-0_9.2.1-17_armhf.deb ...
Unpacking libcc1-0:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../1-libgomp1_9.2.1-17_armhf.deb ...
Unpacking libgomp1:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../2-libatomic1_9.2.1-17_armhf.deb ...
Unpacking libatomic1:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../3-libasan5_9.2.1-17_armhf.deb ...
Unpacking libasan5:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../4-libubsan1_9.2.1-17_armhf.deb ...
Unpacking libubsan1:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../5-gcc-9-base_9.2.1-17_armhf.deb ...
Unpacking gcc-9-base:armhf (9.2.1-17) over (9.2.1-16) ...
Setting up gcc-9-base:armhf (9.2.1-17) ...
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19072 files and directories currently installed.)
Preparing to unpack .../libstdc++6_9.2.1-17_armhf.deb ...
Unpacking libstdc++6:armhf (9.2.1-17) over (9.2.1-16) ...
Setting up libstdc++6:armhf (9.2.1-17) ...
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19072 files and directories currently installed.)
Preparing to unpack .../0-g++-9_9.2.1-17_armhf.deb ...
Unpacking g++-9 (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../1-libstdc++-9-dev_9.2.1-17_armhf.deb ...
Unpacking libstdc++-9-dev:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../2-libgcc-9-dev_9.2.1-17_armhf.deb ...
Unpacking libgcc-9-dev:armhf (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../3-gcc-9_9.2.1-17_armhf.deb ...
Unpacking gcc-9 (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../4-cpp-9_9.2.1-17_armhf.deb ...
Unpacking cpp-9 (9.2.1-17) over (9.2.1-16) ...
Preparing to unpack .../5-libgcc1_1%3a9.2.1-17_armhf.deb ...
Unpacking libgcc1:armhf (1:9.2.1-17) over (1:9.2.1-16) ...
Setting up libgcc1:armhf (1:9.2.1-17) ...
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19072 files and directories currently installed.)
Preparing to unpack .../liblz4-1_1.9.2-1_armhf.deb ...
Unpacking liblz4-1:armhf (1.9.2-1) over (1.9.1-2) ...
Setting up liblz4-1:armhf (1.9.2-1) ...
Setting up libgomp1:armhf (9.2.1-17) ...
Setting up libasan5:armhf (9.2.1-17) ...
Setting up libatomic1:armhf (9.2.1-17) ...
Setting up libubsan1:armhf (9.2.1-17) ...
Setting up cpp-9 (9.2.1-17) ...
Setting up libcc1-0:armhf (9.2.1-17) ...
Setting up libgcc-9-dev:armhf (9.2.1-17) ...
Setting up gcc-9 (9.2.1-17) ...
Setting up libstdc++-9-dev:armhf (9.2.1-17) ...
Setting up g++-9 (9.2.1-17) ...
Processing triggers for libc-bin (2.29-3) ...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/5087 and its subdirectories
Tue Nov 5 13:40:45 UTC 2019 - updating the experimental/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease [72.2 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian experimental/main Sources.diff/Index [27.8 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages.diff/Index [27.8 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en.diff/Index [27.8 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-03-0818.43.pdiff [56 B]
Get:6 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-03-1415.23.pdiff [619 B]
Get:7 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-03-2017.32.pdiff [1620 B]
Get:8 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-04-0216.34.pdiff [781 B]
Get:9 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-04-0817.44.pdiff [1007 B]
Get:10 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-04-2018.45.pdiff [2162 B]
Get:11 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-0216.09.pdiff [42 B]
Get:12 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-0848.05.pdiff [820 B]
Get:13 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-03-0818.43.pdiff [56 B]
Get:14 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-03-1415.23.pdiff [207 B]
Get:15 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-03-2017.32.pdiff [317 B]
Get:16 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-04-0216.34.pdiff [2832 B]
Get:17 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-04-0817.44.pdiff [44 B]
Get:18 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-04-1413.57.pdiff [1747 B]
Get:19 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-04-2018.45.pdiff [3008 B]
Get:20 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-0848.05.pdiff [986 B]
Get:12 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-0848.05.pdiff [820 B]
Get:21 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-03-0818.43.pdiff [57 B]
Get:20 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-0848.05.pdiff [986 B]
Get:22 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-03-2017.32.pdiff [1485 B]
Get:23 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-04-0216.34.pdiff [704 B]
Get:24 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-04-0817.44.pdiff [42 B]
Get:25 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-04-1413.57.pdiff [33 B]
Get:26 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-04-2018.45.pdiff [629 B]
Get:27 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-05-0216.09.pdiff [31 B]
Get:28 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-05-0848.05.pdiff [31 B]
Get:28 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-05-0848.05.pdiff [31 B]
Fetched 175 kB in 5s (38.4 kB/s)
Reading package lists...
Tue Nov 5 13:40:53 UTC 2019 - updating pbuilder for experimental/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 13:40:54 UTC 2019
I: pbuilder-time-stamp: 1572961254
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
SSH EXIT CODE: 255
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 13:42:01 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:42:01 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_schroot_unstable_diffoscope_amd64_osuosl172 #29
In-Reply-To: <482496578.93.1572742440682.JavaMail.jenkins@jenkins>
References: <482496578.93.1572742440682.JavaMail.jenkins@jenkins>
Message-ID: <91401475.48.1572961321778.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:47:38 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:47:38 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_cbxi4a #12676
In-Reply-To: <1673995639.75.1572703656685.JavaMail.jenkins@jenkins>
References: <1673995639.75.1572703656685.JavaMail.jenkins@jenkins>
Message-ID: <403799514.49.1572961658950.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:53:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:53:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_opi2c #13268
In-Reply-To: <977475258.135.1572761747341.JavaMail.jenkins@jenkins>
References: <977475258.135.1572761747341.JavaMail.jenkins@jenkins>
Message-ID: <635869179.50.1572961984803.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:56:56 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:56:56 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_opi2a #11741
In-Reply-To: <1075148812.137.1572762056809.JavaMail.jenkins@jenkins>
References: <1075148812.137.1572762056809.JavaMail.jenkins@jenkins>
Message-ID: <1563273052.51.1572962216543.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 13:57:40 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 13:57:40 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_compare_Debian_sha1sums #334
In-Reply-To: <361326646.84.1572739596541.JavaMail.jenkins@jenkins>
References: <361326646.84.1572739596541.JavaMail.jenkins@jenkins>
Message-ID: <741130970.52.1572962260976.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:04:42 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:04:42 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_arm64_codethink11 #11156
In-Reply-To: <806527778.136.1572762023772.JavaMail.jenkins@jenkins>
References: <806527778.136.1572762023772.JavaMail.jenkins@jenkins>
Message-ID: <1889763056.53.1572962682713.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:06:05 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:06:05 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3416
In-Reply-To: <1951865385.12.1572960504515.JavaMail.jenkins@jenkins>
References: <1951865385.12.1572960504515.JavaMail.jenkins@jenkins>
Message-ID: <27904842.54.1572962765680.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:06:09 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:06:09 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_arm64_codethink13 #10711
In-Reply-To: <989727381.11.1572960495144.JavaMail.jenkins@jenkins>
References: <989727381.11.1572960495144.JavaMail.jenkins@jenkins>
Message-ID: <361162155.55.1572962769755.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled13-arm64.debian.net (arm64 codethink13) in workspace
[reproducible_maintenance_arm64_codethink13] $ /bin/sh -xe /tmp/jenkins9659898595274886668.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled13-arm64.debian.net port 10113: No route to host
Tue 5 Nov 14:05:09 UTC 2019 - codethink-sled13-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 14:06:09 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:06:09 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_arm64_codethink10 #11095
In-Reply-To: <920971101.2.1572960420830.JavaMail.jenkins@jenkins>
References: <920971101.2.1572960420830.JavaMail.jenkins@jenkins>
Message-ID: <1412503515.56.1572962769934.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on codethink-sled10-arm64.debian.net (codethink10 arm64) in workspace
[reproducible_maintenance_arm64_codethink10] $ /bin/sh -xe /tmp/jenkins3199888066886164732.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host codethink-sled10-arm64.debian.net port 10110: No route to host
Tue 5 Nov 14:05:09 UTC 2019 - codethink-sled10-arm64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 14:07:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:07:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_p64c #10492
In-Reply-To: <2131721832.139.1572762158725.JavaMail.jenkins@jenkins>
References: <2131721832.139.1572762158725.JavaMail.jenkins@jenkins>
Message-ID: <1933455704.57.1572962878268.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:08:15 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:08:15 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_i386_profitbricks12 #11678
In-Reply-To: <2129230237.23.1572960692158.JavaMail.jenkins@jenkins>
References: <2129230237.23.1572960692158.JavaMail.jenkins@jenkins>
Message-ID: <1277452431.58.1572962895784.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_maintenance_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins14372453752533582631.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 14:07:15 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 14:09:21 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:09:21 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_i386_profitbricks2 #13498
In-Reply-To: <726455336.28.1572960692191.JavaMail.jenkins@jenkins>
References: <726455336.28.1572960692191.JavaMail.jenkins@jenkins>
Message-ID: <669971202.59.1572962962020.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build2-i386.debian.net (i386 profitbricks2) in workspace
[reproducible_maintenance_i386_profitbricks2] $ /bin/sh -xe /tmp/jenkins9419311546663325504.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build2-i386.debian.net port 22: Connection timed out
Tue 5 Nov 14:08:02 UTC 2019 - profitbricks-build2-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 14:11:39 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:11:39 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_odxu4c #14034
In-Reply-To: <1750565898.38.1572961085413.JavaMail.jenkins@jenkins>
References: <1750565898.38.1572961085413.JavaMail.jenkins@jenkins>
Message-ID: <1588517135.60.1572963099420.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:12:59 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:12:59 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_schroot_unstable_diffoscope_amd64_jenkins #1544
In-Reply-To: <695622068.96.1572743090272.JavaMail.jenkins@jenkins>
References: <695622068.96.1572743090272.JavaMail.jenkins@jenkins>
Message-ID: <440845279.61.1572963179753.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:17:01 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:17:01 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_p64b #10708
In-Reply-To: <1448830695.47.1572961318905.JavaMail.jenkins@jenkins>
References: <1448830695.47.1572961318905.JavaMail.jenkins@jenkins>
Message-ID: <1331787071.62.1572963421583.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:17:55 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:17:55 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_arm64_codethink16 #11367
In-Reply-To: <2032509764.140.1572762180847.JavaMail.jenkins@jenkins>
References: <2032509764.140.1572762180847.JavaMail.jenkins@jenkins>
Message-ID: <679084456.63.1572963475981.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:24:29 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:24:29 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_jenkins #17489
Message-ID: <1673594477.64.1572963869808.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 5.68 MB...]
E: 05file: tar: ./usr/bin/make4ht: File removed before we read it
E: 05file: tar: ./usr/bin/mktexmf: File removed before we read it
E: 05file: tar: ./usr/bin/gpgsplit: File removed before we read it
E: 05file: tar: ./usr/bin/print: File removed before we read it
E: 05file: tar: ./usr/bin/dvispc: File removed before we read it
E: 05file: tar: ./usr/bin/kpsexpand: File removed before we read it
E: 05file: tar: ./usr/bin/pdfjam-slides6up: File removed before we read it
E: 05file: tar: ./usr/bin/base32: File removed before we read it
E: 05file: tar: ./usr/bin/dh_installtex: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-statoverride: File removed before we read it
E: 05file: tar: ./usr/bin/msgattrib: File removed before we read it
E: 05file: tar: ./usr/bin/latex-wordcount: File removed before we read it
E: 05file: tar: ./usr/bin/dh_missing: File removed before we read it
E: 05file: tar: ./usr/bin/clear_console: File removed before we read it
E: 05file: tar: ./usr/bin/svn-multi: File removed before we read it
E: 05file: tar: ./usr/bin/msgcmp: File removed before we read it
E: 05file: tar: ./usr/bin/mknod: File removed before we read it
E: 05file: tar: ./usr/bin/udevadm: File removed before we read it
E: 05file: tar: ./usr/bin/gsftopk: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-screensaver: File removed before we read it
E: 05file: tar: ./usr/bin/gcc-ranlib: File removed before we read it
E: 05file: tar: ./usr/bin/sty2dtx: File removed before we read it
E: 05file: tar: ./usr/bin/bunzip2: File removed before we read it
E: 05file: tar: ./usr/bin/fincore: File removed before we read it
E: 05file: tar: ./usr/bin/cslatex: File removed before we read it
E: 05file: tar: ./usr/bin/expr: File removed before we read it
E: 05file: tar: ./usr/bin/perlivp: File removed before we read it
E: 05file: tar: ./usr/bin/podselect: File removed before we read it
E: 05file: tar: ./usr/bin/cal: File removed before we read it
E: 05file: tar: ./usr/bin/dh_autotools-dev_restoreconfig: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-mime: File removed before we read it
E: 05file: tar: ./usr/bin/dh_installinitramfs: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-ld.gold: File removed before we read it
E: 05file: tar: ./usr/bin/mflua: file changed as we read it
E: 05file: tar: ./usr/bin/kpseaccess: File removed before we read it
E: 05file: tar: ./usr/bin/eptex: File removed before we read it
E: 05file: tar: ./usr/bin/makejvf: File removed before we read it
E: 05file: tar: ./usr/bin/run-parts: File removed before we read it
E: 05file: tar: ./usr/bin/script: File removed before we read it
E: 05file: tar: ./usr/bin/cpp: File removed before we read it
E: 05file: tar: ./usr/bin/dh_installcatalogs: File removed before we read it./usr/bin/ipcs: File removed before we read it
E: 05file: tar: ./usr/bin/omfonts: File removed before we read it
E: 05file: tar: ./usr/bin/mptopdf: File removed before we read it
E: 05file: tar: ./usr/bin/systemd-ask-password: file changed as we read it
E: 05file: tar: ./usr/bin/python3m: File removed before we read it
E: 05file: tar: ./usr/bin/systemd-sysusers: File removed before we read it
E: 05file: tar: ./usr/bin/who: File removed before we read it
E: 05file: tar: ./usr/bin/updmap: File removed before we read it
E: 05file: tar: ./usr/bin/mfplain: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-checkbuilddeps: File removed before we read it
E: 05file: tar: ./usr/bin/gzexe: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-gcov-tool-9: File removed before we read it
E: 05file: tar: ./usr/bin/listings-ext: File removed before we read it
E: 05file: tar: ./usr/bin/make: File removed before we read it
E: 05file: tar: ./usr/bin/namei: File removed before we read it
E: 05file: tar: ./usr/bin/dwz: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-nm: file changed as we read it
E: 05file: tar: ./usr/bin/epspdf: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-gcc-9: file changed as we read it
E: 05file: tar: ./usr/bin/bash: File removed before we read it
E: 05file: tar: ./usr/bin/l3build: File removed before we read it
E: 05file: tar: ./usr/bin/zdiff: File removed before we read it
E: 05file: tar: ./usr/bin/srcredact: File removed before we read it
E: 05file: tar: ./usr/bin/csplain: File removed before we read it
E: 05file: tar: ./usr/bin/numfmt: File removed before we read it
E: 05file: tar: ./usr/bin/sha512sum: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-ranlib: File removed before we read it
E: 05file: tar: ./usr/bin/sum: File removed before we read it
E: 05file: tar: ./usr/bin/ischroot: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-cpp: File removed before we read it
E: 05file: tar: ./usr/bin/lspgpot: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-divert: File removed before we read it
E: 05file: tar: ./usr/bin/xdvi.bin: File removed before we read it
E: 05file: tar: ./usr/bin/seq: File removed before we read it
E: 05file: tar: ./usr/bin/iptables-xml: File removed before we read it
E: 05file: tar: ./usr/bin/dvipdf: File removed before we read it
E: 05file: tar: ./usr/bin/gcov-tool-9: File removed before we read it
E: 05file: tar: ./usr/bin/collateindex.pl: File removed before we read it
E: 05file: tar: ./usr/bin/dvi2tty: File removed before we read it
E: 05file: tar: ./usr/bin/msgcat: File removed before we read it
E: 05file: tar: ./usr/bin/od: File removed before we read it
E: 05file: tar: ./usr/bin/cp: File removed before we read it
E: 05file: tar: ./usr/bin/jamo-normalize: File removed before we read it
E: 05file: tar: ./usr/bin/dt2dv: File removed before we read it
E: 05file: tar: ./usr/bin/authorindex: File removed before we read it
E: 05file: tar: ./usr/bin/ls: File removed before we read it
E: 05file: tar: ./usr/bin/wall: File removed before we read it
E: 05file: tar: ./usr/bin/tex: File removed before we read it
E: 05file: tar: ./usr/bin/synctex: File removed before we read it
E: 05file: tar: ./usr/bin/tasksel: File removed before we read it
E: 05file: tar: ./usr/bin/biburl2doi: File removed before we read it
E: 05file: tar: ./usr/bin/otp2ocp: File removed before we read it
E: 05file: tar: ./usr/bin/ucfq: File removed before we read it
E: 05file: tar: ./usr/bin/ptx: File removed before we read it
E: 05file: tar: ./usr/bin/tee: File removed before we read it
E: 05file: tar: ./usr/bin/checklistings: File removed before we read it
E: 05file: tar: ./usr/bin/mtrace: File removed before we read it
E: 05file: tar: ./usr/bin/hexdump: File removed before we read it
E: 05file: tar: ./usr/bin/nohup: File removed before we read it
E: 05file: tar: ./usr/bin/dviasm: File removed before we read it
E: 05file: tar: ./usr/bin/latex-papersize: File removed before we read it
E: 05file: tar: ./usr/bin/factor: File removed before we read it
E: 05file: tar: ./usr/bin/dh: File removed before we read it
E: 05file: tar: ./usr/bin/colcrt: File removed before we read it
E: 05file: tar: ./usr/bin/mesg: File removed before we read it
E: 05file: tar: ./usr/bin/kpsetool: File removed before we read it
E: 05file: tar: ./usr/bin/dh_auto_clean: File removed before we read it
E: 05file: tar: ./usr/bin/debconf-set-selections: File removed before we read it
E: 05file: tar: ./usr/bin/ps2ps2: File removed before we read it
E: 05file: tar: ./usr/bin/dvitype: File removed before we read it
E: 05file: tar: ./usr/bin/infotocap: File removed before we read it
E: 05file: tar: ./usr/bin/truncate: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-gcov-9: File removed before we read it
E: 05file: tar: ./usr/bin/diff: file changed as we read it
E: 05file: tar: ./usr/bin/zipdetails: File removed before we read it
E: 05file: tar: ./usr/bin/echo: File removed before we read it
E: 05file: tar: ./usr/bin/cpio: File removed before we read it
E: 05file: tar: ./usr/bin/unlzma: File removed before we read it
E: 05file: tar: ./usr/bin/gftodvi: File removed before we read it
E: 05file: tar: ./usr/bin/detex: File removed before we read it
E: 05file: tar: ./usr/bin/cat: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-query: File removed before we read it
E: 05file: tar: ./usr/bin/a5toa4: File removed before we read it
E: 05file: tar: ./usr/bin/pdb: File removed before we read it
E: 05file: tar: ./usr/bin/openjade: File removed before we read it
E: 05file: tar: ./usr/bin/nm: File removed before we read it
E: 05file: tar: ./usr/bin/bootctl: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg: File removed before we read it
E: 05file: tar: ./usr/bin/faillog: file changed as we read it
E: 05file: tar: ./usr/bin/pygettext3: File removed before we read it./usr/bin/htxelatex: File removed before we read it
E: 05file: tar: ./usr/bin/autoheader: File removed before we read it
E: 05file: tar: ./usr/bin/pdfbook: File removed before we read it./usr/bin/ctwill-refsort: File removed before we read it
E: 05file: tar: ./usr/bin/chkdvifont: file changed as we read it
E: 05file: tar: ./usr/bin/dpkg-genchanges: File removed before we read it
E: 05file: tar: ./usr/bin/jfmutil: File removed before we read it
E: 05file: tar: ./usr/bin/tset: File removed before we read it
E: 05file: tar: ./usr/bin/dh_compress: file changed as we read it
E: 05file: tar: ./usr/bin/xdg-icon-resource: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64: File removed before we read it
E: 05file: tar: ./usr/bin/ps2ascii: File removed before we read it
E: 05file: tar: ./usr/bin/dh_strip: File removed before we read it
E: 05file: tar: ./usr/bin/libtoolize: file changed as we read it
E: 05file: tar: ./usr/bin/ebong: File removed before we read it
E: 05file: tar: ./usr/bin/man: File removed before we read it
E: 05file: tar: ./usr/bin/journalctl: File removed before we read it
E: 05file: tar: ./usr/bin/ovp2ovf: File removed before we read it
E: 05file: tar: ./usr/bin/lzcat: File removed before we read it
E: 05file: tar: ./usr/bin/xdvi: File removed before we read it
E: 05file: tar: ./usr/bin/tty: File removed before we read it
E: 05file: tar: ./usr/bin/systemctl: File removed before we read it
E: 05file: tar: ./usr/bin/chcon: file changed as we read it
E: 05file: tar: ./usr/bin/lsattr: File removed before we read it
E: 05file: tar: ./usr/bin/t1asm: File removed before we read it
E: 05file: tar: ./usr/bin/dh_auto_install: File removed before we read it
E: 05file: tar: ./usr/bin/perl5.30.0: file changed as we read it
E: 05file: tar: ./usr/bin/uptftopl: File removed before we read it
E: 05file: tar: ./usr/bin/gftype: File removed before we read it
E: 05file: tar: ./usr/bin/dvilualatex-dev: File removed before we read it
E: 05file: tar: ./usr/bin/bibzbladd: File removed before we read it
E: 05file: tar: ./usr/bin/mkpic: File removed before we read it
E: 05file: tar: ./usr/bin/troff: File removed before we read it
E: 05file: tar: ./usr/bin/grops: File removed before we read it
E: 05file: tar: ./usr/bin/pod2text: File removed before we read it
E: 05file: tar: ./usr/bin/pythontex: File removed before we read it
E: 05file: tar: ./usr/bin/zmore: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-architecture: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-split: File removed before we read it
E: 05file: tar: ./usr/bin/envsubst: File removed before we read it
E: 05file: tar: ./usr/bin/tex2aspc: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-open: File removed before we read it
E: 05file: tar: ./usr/bin/split: File removed before we read it./usr/bin/pr: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-desktop-menu: File removed before we read it
E: 05file: tar: ./usr/bin/cvtsudoers: File removed before we read it
E: 05file: tar: ./usr/bin/install: File removed before we read it
E: 05file: tar: ./usr/bin/xhlatex: File removed before we read it
E: 05file: tar: ./usr/bin/delpart: File removed before we read it
E: 05file: tar: ./usr/bin/t1disasm: File removed before we read it
E: 05file: tar: ./usr/bin/dh_gconf: File removed before we read it
E: 05file: tar: ./usr/bin/gcov-9: File removed before we read it
E: 05file: tar: ./usr/bin/znew: File removed before we read it
E: 05file: tar: ./usr/bin/bibtex8: File removed before we read it
E: 05file: tar: ./usr/bin/basename: File removed before we read it
E: 05file: tar: ./usr/bin/ctwill-twinx: File removed before we read it
E: 05file: tar: ./usr/bin/dvi2fax: File removed before we read it
E: 05file: tar: ./usr/bin/pdfbook2: File removed before we read it
E: 05file: tar: ./usr/bin/odvicopy: File removed before we read it
E: 05file: tar: ./usr/bin/infocmp: File removed before we read it
E: 05file: tar: ./usr/bin/ipcrm: File removed before we read it
E: 05file: tar: ./usr/bin/dvitomp: File removed before we read it
E: 05file: tar: ./usr/bin/pager: File removed before we read it
E: 05file: tar: ./usr/bin/ucfr: File removed before we read it
E: 05file: tar: ./usr/bin/rbash: File removed before we read it
E: 05file: tar: ./usr/bin/gzip: File removed before we read it
E: 05file: tar: ./usr/bin/localedef: File removed before we read it
E: 05file: tar: ./usr/bin/yes: File removed before we read it
E: 05file: tar: ./usr/bin/strings: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-email: File removed before we read it
E: 05file: tar: ./usr/bin/vptovf: File removed before we read it
E: 05file: tar: ./usr/bin/nstat: File removed before we read it
E: 05file: tar: ./usr/bin/gregorio: File removed before we read it
E: 05file: tar: ./usr/bin/patch: File removed before we read it
E: 05file: tar: ./usr/bin/ip: File removed before we read it
E: 05file: tar: ./usr/bin/lesskey: File removed before we read it
E: 05file: tar: ./usr/bin/recode-sr-latin: File removed before we read it
E: 05file: tar: ./usr/bin/ld.gold: File removed before we read it
E: 05file: tar: ./usr/bin/sensible-pager: File removed before we read it
E: 05file: tar: ./usr/bin/lamed: File removed before we read it
E: 05file: tar: ./usr/bin/mktextfm: File removed before we read it
E: 05file: tar: ./usr/bin/pidof: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-desktop-icon: File removed before we read it
E: 05file: tar: ./usr/bin/t4ht: File removed before we read it
E: 05file: tar: ./usr/bin/lsmod: File removed before we read it
E: 05file: tar: ./usr/bin/cut: File removed before we read it
E: 05file: tar: ./usr/bin/dir: File removed before we read it
E: 05file: tar: ./usr/bin/xzcmp: File removed before we read it
E: 05file: tar: ./usr/bin/dpkg-scansources: File removed before we read it
E: 05file: tar: ./usr/bin/h2xs: File removed before we read it
E: 05file: tar: ./usr/bin/kpsereadlink: File removed before we read it
E: 05file: tar: ./usr/bin/pdfjam-pocketmod: File removed before we read it
E: 05file: tar: ./usr/bin/pdfcslatex: File removed before we read it
E: 05file: tar: ./usr/bin/lzmainfo: File removed before we read it
E: 05file: tar: ./usr/bin/pdfatfi: File removed before we read it
E: 05file: tar: ./usr/bin/gpg-agent: File removed before we read it
E: 05file: tar: ./usr/bin/df: File removed before we read it
E: 05file: tar: ./usr/bin/dh_makeshlibs: File removed before we read it
E: 05file: tar: ./usr/bin/systemd-tmpfiles: File removed before we read it
E: 05file: tar: ./usr/bin/dh_installman: File removed before we read it
E: 05file: tar: ./usr/bin/libnetcfg: File removed before we read it
E: 05file: tar: ./usr/bin/c99-gcc: File removed before we read it
E: 05file: tar: ./usr/bin/x86_64-linux-gnu-cpp-9: File removed before we read it
E: 05file: tar: ./usr/bin/m4: File removed before we read it
E: 05file: tar: ./usr/bin/xdg-settings: File removed before we read it
E: 05file: tar: ./usr/bin/systemd-run: File removed before we read it
E: 05file: tar: ./usr/bin/mktexpk: File removed before we read it
E: 05file: tar: ./usr/bin: file changed as we read it
E: 05file: tar: ./usr/local: File removed before we read it
E: 05file: tar: ./usr: file changed as we read it
E: 05file: tar: ./run: File removed before we read it
E: 05file: tar: ./sbin: File removed before we read it
E: 05file: tar: ./boot: File removed before we read it
E: 05file: tar: ./sys: File removed before we read it
E: 05file: tar: ./bin: File removed before we read it
E: 05file: tar: ./home: File removed before we read it
E: 05file: tar: ./proc: File removed before we read it
E: 05file: tar: ./root: File removed before we read it
E: 05file: tar: .: file changed as we read it
E: jenkins-d-i-sid-caeb2c3f-2ae5-48eb-b31c-9606cfd57eb0: Chroot setup failed: stage=setup-stop
Tue 5 Nov 14:24:28 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-xgaw7XcR, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 14:29:10 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:29:10 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
d-i_schroot-sid-upgrade #1695
In-Reply-To: <2145708223.126.1572755701716.JavaMail.jenkins@jenkins>
References: <2145708223.126.1572755701716.JavaMail.jenkins@jenkins>
Message-ID: <1216030628.65.1572964150671.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 14:29:11 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 14:29:11 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_jenkins #17490
In-Reply-To: <1673594477.64.1572963869808.JavaMail.jenkins@jenkins>
References: <1673594477.64.1572963869808.JavaMail.jenkins@jenkins>
Message-ID: <27030829.66.1572964151100.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 999.85 KB...]
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:17 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/286
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/340
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 14:26 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/247
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:41 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/292
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:29 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/322
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:16 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_24/299
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/71
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:39 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/72
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/53
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/36
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:33 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/44
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/66
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:39 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/74
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:31 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/32
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 04:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/56
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/46
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/38
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/60
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/57
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/39
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 01:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/49
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/64
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/33
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/43
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/45
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/41
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/47
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/58
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/31
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 10:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/67
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/52
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/63
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/48
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/73
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/40
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/75
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/65
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/51
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/61
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 01:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/50
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/70
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/59
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/69
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/37
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 04:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/55
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/35
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 10:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/68
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/62
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:31 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/34
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:33 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/42
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_6/54
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:24 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1593
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 14:44 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1573
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:15 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1582
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:10 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1581
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:57 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1591
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:28 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1584
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1594
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:15 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1592
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 15:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1574
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 15:22 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1576
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 15:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1577
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:23 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1583
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:44 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1587
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:39 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1586
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:30 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1578
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 14:31 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1572
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1580
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:56 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1588
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:19 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1589
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:25 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1590
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1579
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1585
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 15:16 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_15/1575
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/71
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:40 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/72
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/29
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 04:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/53
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/36
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/44
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 10:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/66
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:31 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/32
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/56
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/46
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/38
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/60
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/57
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/39
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/49
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:38 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/64
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/33
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/43
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/45
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/41
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 01:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/47
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/58
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/31
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/67
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/52
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/63
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 01:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/48
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:10 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/73
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:33 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/40
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 10:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/65
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/51
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/61
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/50
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:39 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/70
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/59
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/69
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/37
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/55
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/35
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:39 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/68
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/62
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:32 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/34
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:33 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/42
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:31 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/30
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 04:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/arm64_5/54
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:24 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1802
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:54 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1776
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:19 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1796
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:16 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1767
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:00 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1788
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 14:20 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1763
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:16 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1821
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:49 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1817
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:44 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1813
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:22 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1801
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:42 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1804
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 01:28 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1797
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1815
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 15:52 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1764
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:17 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1791
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1771
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1777
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1774
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:54 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1818
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1766
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:47 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1816
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:03 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1785
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:13 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1794
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:59 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1806
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:14 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1781
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:49 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1769
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:52 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1824
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:48 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1775
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1768
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:52 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1810
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1780
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:43 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1823
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:50 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1784
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:12 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1773
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:57 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1770
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:50 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1814
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:15 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1795
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1826
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1789
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:08 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1772
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:28 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1809
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1820
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:20 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1798
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:22 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1787
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1793
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:59 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1825
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:16 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1786
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:15 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1827
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:21 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1828
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:52 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1805
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 07:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1812
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 12:59 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1819
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:42 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1783
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:18 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1807
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 05:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1803
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:22 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1792
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:52 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1779
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1782
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:45 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1778
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:13 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1790
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1822
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:24 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1808
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1800
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:50 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1799
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 06:59 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1811
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_9/1765
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:29 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/143
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/171
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:53 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/155
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:47 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/146
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:57 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/156
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 14:00 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/190
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:17 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/158
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:00 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/180
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 08:47 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/173
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:30 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/183
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 16:44 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/138
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:53 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/178
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:41 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/154
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:43 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/160
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:43 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/177
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:17 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/141
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/151
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/150
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:12 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/168
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:36 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/159
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 10:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/179
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:11 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/186
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:07 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/167
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:04 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/185
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/181
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 03:14 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/172
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:43 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/170
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 00:21 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/165
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:18 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/152
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:30 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/163
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/176
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:27 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/188
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:09 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/175
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:42 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/145
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:35 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/169
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:37 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/184
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 11:12 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/182
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/148
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:00 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/147
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 02:02 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/166
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 20:05 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/157
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:12 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/140
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 19:25 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/153
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:22 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/187
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 13:49 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/189
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 21:53 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/161
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:06 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/139
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 22:30 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/162
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:23 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/142
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 17:34 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/144
drwxr-xr-x 2 jenkins jenkins 4096 Nov 4 09:01 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/174
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 23:47 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/164
drwxr-xr-x 2 jenkins jenkins 4096 Nov 3 18:28 /var/lib/jenkins/userContent/reproducible/debian/build_service/armhf_32/149
Tue Nov 5 14:26:08 UTC 2019 - Removing schroot sessions older than 3 days.
schroot sessions older than 3 days found, which will be deleted:
drwxr-xr-x 17 root root 4096 Oct 22 01:02 /var/lib/schroot/unpack/jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d
Tue Nov 5 14:26:08 UTC 2019 - removing schroot session jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d...
E: 15binfmt: update-binfmts: unable to open /var/run/schroot/mount/jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d/bin/sh: No such file or directory
E: 10mount: warning: Mount location /var/run/schroot/mount/jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d no longer exists; skipping unmount
E: jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d: Failed to unlock chroot: /var/lib/schroot/session/jenkins-d-i-sid-e6d6266a-11c2-47cc-8b55-8bbfac08cb5d: Failed to unlink session file: No such file or directory
Tue 5 Nov 14:29:10 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-XdAvlmB0, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 15:13:31 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 15:13:31 +0000 (UTC)
Subject: [Qa-jenkins-scm] Still Failing:
g-i-installation_debian_sid_hurd_lxde/691
In-Reply-To: <1651255748.14.1572626524380.JavaMail.jenkins@jenkins>
References: <1651255748.14.1572626524380.JavaMail.jenkins@jenkins>
Message-ID: <1280711876.68.1572966812444.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/g-i-installation_debian_sid_hurd_lxde/691/ and https://jenkins.debian.net/job/g-i-installation_debian_sid_hurd_lxde/691//console and https://jenkins.debian.net/job/g-i-installation_debian_sid_hurd_lxde/691//artifact/results/ if there are any.
From jenkins at jenkins.debian.net Tue Nov 5 15:41:24 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 15:41:24 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_forward_runner #235
In-Reply-To: <1301794917.98.1572743747428.JavaMail.jenkins@jenkins>
References: <1301794917.98.1572743747428.JavaMail.jenkins@jenkins>
Message-ID: <874237942.74.1572968484238.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 59.88 KB...]
Tue Nov 5 15:01:48 UTC 2019 - downloading .json for affiche.app_0.6.0-10+b1_amd64.deb (5baa74b8e26a38467dd770467be716f06a637dbd) from buildinfo.debian.net
Tue Nov 5 15:02:20 UTC 2019 - UNREPRODUCIBLE: affiche.app_0.6.0-10+b1_amd64.deb (6f1f1275d0334d487bb256578b1f0017210f41b9) only on ftp.debian.org.
Tue Nov 5 15:02:21 UTC 2019 - downloading .json for afflib-tools_3.7.17-5_amd64.deb (6f1f1275d0334d487bb256578b1f0017210f41b9) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6f1f1275d0334d487bb256578b1f0017210f41b9
Tue Nov 5 15:02:53 UTC 2019 - UNREPRODUCIBLE: afflib-tools_3.7.17-5_amd64.deb (36dab9ece9eb29c1d4f609cc2e717fc7244dcc94) only on ftp.debian.org.
Tue Nov 5 15:02:53 UTC 2019 - downloading .json for afl_2.52b-5_amd64.deb (36dab9ece9eb29c1d4f609cc2e717fc7244dcc94) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/36dab9ece9eb29c1d4f609cc2e717fc7244dcc94
Tue Nov 5 15:03:26 UTC 2019 - UNREPRODUCIBLE: afl_2.52b-5_amd64.deb (ac4eca704d49a8deaf48beca348e0aaa6ca86805) only on ftp.debian.org.
Tue Nov 5 15:03:26 UTC 2019 - downloading .json for afl-clang_2.52b-5_amd64.deb (ac4eca704d49a8deaf48beca348e0aaa6ca86805) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ac4eca704d49a8deaf48beca348e0aaa6ca86805
Tue Nov 5 15:03:59 UTC 2019 - UNREPRODUCIBLE: afl-clang_2.52b-5_amd64.deb (1c3b0a203d242563bc48e4e784daf895747d6c61) only on ftp.debian.org.
Tue Nov 5 15:04:00 UTC 2019 - downloading .json for afl-cov_0.6.2-1_all.deb (1c3b0a203d242563bc48e4e784daf895747d6c61) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/1c3b0a203d242563bc48e4e784daf895747d6c61
Tue Nov 5 15:04:33 UTC 2019 - UNREPRODUCIBLE: afl-cov_0.6.2-1_all.deb (9ce57442498727386edf34489e03028538f7a199) only on ftp.debian.org.
Tue Nov 5 15:04:34 UTC 2019 - downloading .json for afl-doc_2.52b-5_all.deb (9ce57442498727386edf34489e03028538f7a199) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9ce57442498727386edf34489e03028538f7a199
Tue Nov 5 15:05:09 UTC 2019 - UNREPRODUCIBLE: afl-doc_2.52b-5_all.deb (4c8300fac1072ae0e2a8b5bf59f3e782ead01df5) only on ftp.debian.org.
Tue Nov 5 15:05:10 UTC 2019 - downloading .json for afnix_2.8.1-2_amd64.deb (4c8300fac1072ae0e2a8b5bf59f3e782ead01df5) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/4c8300fac1072ae0e2a8b5bf59f3e782ead01df5
Tue Nov 5 15:05:44 UTC 2019 - UNREPRODUCIBLE: afnix_2.8.1-2_amd64.deb (af63312b86a271a0a623144b68596910a45d16d1) only on ftp.debian.org.
Tue Nov 5 15:05:45 UTC 2019 - downloading .json for afnix-doc_2.8.1-2_all.deb (af63312b86a271a0a623144b68596910a45d16d1) from buildinfo.debian.net
Tue Nov 5 15:06:16 UTC 2019 - UNREPRODUCIBLE: afnix-doc_2.8.1-2_all.deb (56648d5091a47ea2753a6f8e8e0c1c978cf8f7ca) only on ftp.debian.org.
Tue Nov 5 15:06:16 UTC 2019 - downloading .json for aft_2%3a5.098-4_all.deb (56648d5091a47ea2753a6f8e8e0c1c978cf8f7ca) from buildinfo.debian.net
Tue Nov 5 15:06:47 UTC 2019 - REPRODUCIBLE: aft_2%3a5.098-4_all.deb (258663c902670790db03777e695f9cda981d0b35) - reproduced 137 times.
Tue Nov 5 15:06:48 UTC 2019 - downloading .json for afterstep_2.2.12-12_amd64.deb (258663c902670790db03777e695f9cda981d0b35) from buildinfo.debian.net
Tue Nov 5 15:07:19 UTC 2019 - REPRODUCIBLE: afterstep_2.2.12-12_amd64.deb (af5b5eb29dd8eb039d49a844363e4dcc262f6f19) - reproduced 257 times.
Tue Nov 5 15:07:20 UTC 2019 - downloading .json for afterstep-data_2.2.12-12_all.deb (af5b5eb29dd8eb039d49a844363e4dcc262f6f19) from buildinfo.debian.net
Tue Nov 5 15:07:53 UTC 2019 - REPRODUCIBLE: afterstep-data_2.2.12-12_all.deb (078365cc19f6ea5d75db991f4596e308ab401691) - reproduced 5 times.
Tue Nov 5 15:07:54 UTC 2019 - downloading .json for afuse_0.4.1-1+b3_amd64.deb (078365cc19f6ea5d75db991f4596e308ab401691) from buildinfo.debian.net
Tue Nov 5 15:08:25 UTC 2019 - REPRODUCIBLE: afuse_0.4.1-1+b3_amd64.deb (0f3525b83807572a9e25deefb82fdd93fc4729d8) - reproduced 159 times.
Tue Nov 5 15:08:26 UTC 2019 - downloading .json for agda_2.5.4.1-3_all.deb (0f3525b83807572a9e25deefb82fdd93fc4729d8) from buildinfo.debian.net
Tue Nov 5 15:08:56 UTC 2019 - UNREPRODUCIBLE: agda_2.5.4.1-3_all.deb (d0d76e067034e540b89dd2b1a458ec4f9b92548c) only on ftp.debian.org.
Tue Nov 5 15:08:56 UTC 2019 - downloading .json for agda-bin_2.5.4.1-3+b1_amd64.deb (d0d76e067034e540b89dd2b1a458ec4f9b92548c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d0d76e067034e540b89dd2b1a458ec4f9b92548c
Tue Nov 5 15:09:29 UTC 2019 - UNREPRODUCIBLE: agda-bin_2.5.4.1-3+b1_amd64.deb (b7af8c8d6d83e70f3a0dcc12043da4a5c761d3e9) only on ftp.debian.org.
Tue Nov 5 15:09:30 UTC 2019 - downloading .json for agda-mode_2.5.4.1-3_all.deb (b7af8c8d6d83e70f3a0dcc12043da4a5c761d3e9) from buildinfo.debian.net
Tue Nov 5 15:10:00 UTC 2019 - UNREPRODUCIBLE: agda-mode_2.5.4.1-3_all.deb (8d28581f0d81e7a8fc0f04cef99bb1d4b2f4e074) only on ftp.debian.org.
Tue Nov 5 15:10:01 UTC 2019 - downloading .json for agda-stdlib_0.17-1_all.deb (8d28581f0d81e7a8fc0f04cef99bb1d4b2f4e074) from buildinfo.debian.net
Tue Nov 5 15:10:32 UTC 2019 - UNREPRODUCIBLE: agda-stdlib_0.17-1_all.deb (6f78c063f6ec540637929c1759fc39ce424d812a) only on ftp.debian.org.
Tue Nov 5 15:10:32 UTC 2019 - downloading .json for agda-stdlib-doc_0.17-1_all.deb (6f78c063f6ec540637929c1759fc39ce424d812a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6f78c063f6ec540637929c1759fc39ce424d812a
Tue Nov 5 15:11:05 UTC 2019 - UNREPRODUCIBLE: agda-stdlib-doc_0.17-1_all.deb (e2ddb89d392e0d1c0d05496378bf29c4fc94c8b5) only on ftp.debian.org.
Tue Nov 5 15:11:06 UTC 2019 - downloading .json for agedu_9723-1+b1_amd64.deb (e2ddb89d392e0d1c0d05496378bf29c4fc94c8b5) from buildinfo.debian.net
Tue Nov 5 15:11:37 UTC 2019 - REPRODUCIBLE: agedu_9723-1+b1_amd64.deb (911d1c8c7d13b1dfb36a5741d2eb9de053354967) - reproduced 99 times.
Tue Nov 5 15:11:37 UTC 2019 - downloading .json for agenda.app_0.44-2+b1_amd64.deb (911d1c8c7d13b1dfb36a5741d2eb9de053354967) from buildinfo.debian.net
Tue Nov 5 15:12:08 UTC 2019 - UNREPRODUCIBLE: agenda.app_0.44-2+b1_amd64.deb (30818e975de5b9f76462179e42473ace47e46db3) only on ftp.debian.org.
Tue Nov 5 15:12:09 UTC 2019 - downloading .json for agent-transfer_0.43-3_amd64.deb (30818e975de5b9f76462179e42473ace47e46db3) from buildinfo.debian.net
Tue Nov 5 15:12:42 UTC 2019 - UNREPRODUCIBLE: agent-transfer_0.43-3_amd64.deb (edf6b2d26c9d3c1f988cc63c6be8c689693b8585) only on ftp.debian.org.
Tue Nov 5 15:12:42 UTC 2019 - downloading .json for aggregate_1.6-7+b1_amd64.deb (edf6b2d26c9d3c1f988cc63c6be8c689693b8585) from buildinfo.debian.net
Tue Nov 5 15:13:13 UTC 2019 - UNREPRODUCIBLE: aggregate_1.6-7+b1_amd64.deb (9e6669a0841edb87ca241b78e98483ed44549e86) only on ftp.debian.org.
Tue Nov 5 15:13:14 UTC 2019 - downloading .json for aghermann_1.1.2-2_amd64.deb (9e6669a0841edb87ca241b78e98483ed44549e86) from buildinfo.debian.net
Tue Nov 5 15:13:47 UTC 2019 - UNREPRODUCIBLE: aghermann_1.1.2-2_amd64.deb (031ec9aba6ba47ecdb140812dc0f93342a568cc4) only on ftp.debian.org.
Tue Nov 5 15:13:47 UTC 2019 - downloading .json for aglfn_1.7-3_all.deb (031ec9aba6ba47ecdb140812dc0f93342a568cc4) from buildinfo.debian.net
Tue Nov 5 15:14:18 UTC 2019 - REPRODUCIBLE: aglfn_1.7-3_all.deb (d404261883ae7bd5a3e35abca99b1256ae070ed5) - reproduced 7 times.
Tue Nov 5 15:14:19 UTC 2019 - downloading .json for agtl_0.8.0.3-1.1_all.deb (d404261883ae7bd5a3e35abca99b1256ae070ed5) from buildinfo.debian.net
Tue Nov 5 15:14:52 UTC 2019 - UNREPRODUCIBLE: agtl_0.8.0.3-1.1_all.deb (3bbba70ce9479ed03d129ed9cef6c7bac9234bb5) only on ftp.debian.org.
Tue Nov 5 15:14:53 UTC 2019 - downloading .json for aha_0.5-1_amd64.deb (3bbba70ce9479ed03d129ed9cef6c7bac9234bb5) from buildinfo.debian.net
Tue Nov 5 15:15:24 UTC 2019 - UNREPRODUCIBLE: aha_0.5-1_amd64.deb (c2cb7cf8106530e6b5ac0f64fc2282b66f39beb7) only on ftp.debian.org.
Tue Nov 5 15:15:25 UTC 2019 - downloading .json for ahcpd_0.53-2+b1_amd64.deb (c2cb7cf8106530e6b5ac0f64fc2282b66f39beb7) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c2cb7cf8106530e6b5ac0f64fc2282b66f39beb7
Tue Nov 5 15:15:57 UTC 2019 - UNREPRODUCIBLE: ahcpd_0.53-2+b1_amd64.deb (d05ee2bfc277f9587c610f97967c342dbc6b789d) only on ftp.debian.org.
Tue Nov 5 15:15:58 UTC 2019 - downloading .json for aho-corasick_0.6.9-1_amd64.deb (d05ee2bfc277f9587c610f97967c342dbc6b789d) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d05ee2bfc277f9587c610f97967c342dbc6b789d
Tue Nov 5 15:16:32 UTC 2019 - UNREPRODUCIBLE: aho-corasick_0.6.9-1_amd64.deb (e6440908b960ca4e9b1c440070a0fce0082e64da) only on ftp.debian.org.
Tue Nov 5 15:16:33 UTC 2019 - downloading .json for aide_0.16.1-1_amd64.deb (e6440908b960ca4e9b1c440070a0fce0082e64da) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e6440908b960ca4e9b1c440070a0fce0082e64da
Tue Nov 5 15:17:06 UTC 2019 - UNREPRODUCIBLE: aide_0.16.1-1_amd64.deb (9b9bead3a72c12a31fd8cfc4ba440a3a21af97fd) only on ftp.debian.org.
Tue Nov 5 15:17:07 UTC 2019 - downloading .json for aide-common_0.16.1-1_all.deb (9b9bead3a72c12a31fd8cfc4ba440a3a21af97fd) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9b9bead3a72c12a31fd8cfc4ba440a3a21af97fd
Tue Nov 5 15:17:40 UTC 2019 - UNREPRODUCIBLE: aide-common_0.16.1-1_all.deb (862daf4e0329ef760f7e23e106eafa927eb5566e) only on ftp.debian.org.
Tue Nov 5 15:17:41 UTC 2019 - downloading .json for aide-dynamic_0.16.1-1_amd64.deb (862daf4e0329ef760f7e23e106eafa927eb5566e) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/862daf4e0329ef760f7e23e106eafa927eb5566e
Tue Nov 5 15:18:16 UTC 2019 - UNREPRODUCIBLE: aide-dynamic_0.16.1-1_amd64.deb (b0287c68e255db57f494d33e909b1dd99ad5f4fc) only on ftp.debian.org.
Tue Nov 5 15:18:17 UTC 2019 - downloading .json for aide-xen_0.16.1-1_amd64.deb (b0287c68e255db57f494d33e909b1dd99ad5f4fc) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/b0287c68e255db57f494d33e909b1dd99ad5f4fc
Tue Nov 5 15:18:49 UTC 2019 - UNREPRODUCIBLE: aide-xen_0.16.1-1_amd64.deb (6ddf68c1f809fe470a1c2eaf04263c8de4358b41) only on ftp.debian.org.
Tue Nov 5 15:18:50 UTC 2019 - downloading .json for aidl_1%3a8.1.0+r23-1_amd64.deb (6ddf68c1f809fe470a1c2eaf04263c8de4358b41) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6ddf68c1f809fe470a1c2eaf04263c8de4358b41
Tue Nov 5 15:19:24 UTC 2019 - UNREPRODUCIBLE: aidl_1%3a8.1.0+r23-1_amd64.deb (c2a1bda15886e6d590cbfcdf06ef0d44b37f69d8) only on ftp.debian.org.
Tue Nov 5 15:19:25 UTC 2019 - downloading .json for aiksaurus_1.2.1+dev-0.12-6.3_amd64.deb (c2a1bda15886e6d590cbfcdf06ef0d44b37f69d8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c2a1bda15886e6d590cbfcdf06ef0d44b37f69d8
Tue Nov 5 15:20:00 UTC 2019 - UNREPRODUCIBLE: aiksaurus_1.2.1+dev-0.12-6.3_amd64.deb (299b208a83f4578b5ff5b3d6ae28925e2e76acad) only on ftp.debian.org.
Tue Nov 5 15:20:01 UTC 2019 - downloading .json for air-quality-sensor_0.1.4.2-1_amd64.deb (299b208a83f4578b5ff5b3d6ae28925e2e76acad) from buildinfo.debian.net
Tue Nov 5 15:20:33 UTC 2019 - UNREPRODUCIBLE: air-quality-sensor_0.1.4.2-1_amd64.deb (43094d81980cca64368302b743cb683b28f5e08f) only on ftp.debian.org.
Tue Nov 5 15:20:34 UTC 2019 - downloading .json for aircrack-ng_1%3a1.5.2-3_amd64.deb (43094d81980cca64368302b743cb683b28f5e08f) from buildinfo.debian.net
Tue Nov 5 15:21:04 UTC 2019 - UNREPRODUCIBLE: aircrack-ng_1%3a1.5.2-3_amd64.deb (63f1276bcd855456c34fa9f8b69d7a08967a1823) only on ftp.debian.org.
Tue Nov 5 15:21:05 UTC 2019 - downloading .json for airgraph-ng_1%3a1.5.2-3_all.deb (63f1276bcd855456c34fa9f8b69d7a08967a1823) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/63f1276bcd855456c34fa9f8b69d7a08967a1823
Tue Nov 5 15:21:38 UTC 2019 - UNREPRODUCIBLE: airgraph-ng_1%3a1.5.2-3_all.deb (e47cc4775f2e42eb234c69187ff5f54d6f1f1f72) only on ftp.debian.org.
Tue Nov 5 15:21:38 UTC 2019 - downloading .json for airport-utils_2-6_all.deb (e47cc4775f2e42eb234c69187ff5f54d6f1f1f72) from buildinfo.debian.net
Tue Nov 5 15:22:10 UTC 2019 - REPRODUCIBLE: airport-utils_2-6_all.deb (1fce3c6b9a31b735c7357cb74fc86aeca8fd0459) - reproduced 121 times.
Tue Nov 5 15:22:11 UTC 2019 - downloading .json for airspy_1.0.9-3_amd64.deb (1fce3c6b9a31b735c7357cb74fc86aeca8fd0459) from buildinfo.debian.net
Tue Nov 5 15:22:42 UTC 2019 - REPRODUCIBLE: airspy_1.0.9-3_amd64.deb (d33fc8b188ae6d1570accc5783069aa7159d855a) - reproduced 16 times.
Tue Nov 5 15:22:42 UTC 2019 - downloading .json for airstrike_0.99+1.0pre6a-9_amd64.deb (d33fc8b188ae6d1570accc5783069aa7159d855a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d33fc8b188ae6d1570accc5783069aa7159d855a
Tue Nov 5 15:23:15 UTC 2019 - UNREPRODUCIBLE: airstrike_0.99+1.0pre6a-9_amd64.deb (c02b86ebf61e707105ed7731b4574c2b396a6717) only on ftp.debian.org.
Tue Nov 5 15:23:16 UTC 2019 - downloading .json for airstrike-common_0.99+1.0pre6a-9_all.deb (c02b86ebf61e707105ed7731b4574c2b396a6717) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c02b86ebf61e707105ed7731b4574c2b396a6717
Tue Nov 5 15:23:49 UTC 2019 - UNREPRODUCIBLE: airstrike-common_0.99+1.0pre6a-9_all.deb (5bbfdef6e2f2fd7ab4b48c009b83dd5b2e85d09f) only on ftp.debian.org.
Tue Nov 5 15:23:50 UTC 2019 - downloading .json for aiscm_0.18.1-1+b1_amd64.deb (5bbfdef6e2f2fd7ab4b48c009b83dd5b2e85d09f) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5bbfdef6e2f2fd7ab4b48c009b83dd5b2e85d09f
Tue Nov 5 15:24:22 UTC 2019 - UNREPRODUCIBLE: aiscm_0.18.1-1+b1_amd64.deb (c7723810201c0aac9ea68e12c37d2eff5b950fef) only on ftp.debian.org.
Tue Nov 5 15:24:23 UTC 2019 - downloading .json for aisleriot_1%3a3.22.7-2_amd64.deb (c7723810201c0aac9ea68e12c37d2eff5b950fef) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c7723810201c0aac9ea68e12c37d2eff5b950fef
Tue Nov 5 15:25:12 UTC 2019 - UNREPRODUCIBLE: aisleriot_1%3a3.22.7-2_amd64.deb (8d7577660e6863b5abf912e3502acd0923a22da6) only on ftp.debian.org.
Tue Nov 5 15:25:13 UTC 2019 - downloading .json for aj-snapshot_0.9.8-1_amd64.deb (8d7577660e6863b5abf912e3502acd0923a22da6) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/8d7577660e6863b5abf912e3502acd0923a22da6
Tue Nov 5 15:25:48 UTC 2019 - UNREPRODUCIBLE: aj-snapshot_0.9.8-1_amd64.deb (cfae2bcfc65a0c56e4942723d22d5aebad13bebc) only on ftp.debian.org.
Tue Nov 5 15:25:49 UTC 2019 - downloading .json for ajaxterm_0.10-13_all.deb (cfae2bcfc65a0c56e4942723d22d5aebad13bebc) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/cfae2bcfc65a0c56e4942723d22d5aebad13bebc
Tue Nov 5 15:26:29 UTC 2019 - UNREPRODUCIBLE: ajaxterm_0.10-13_all.deb (c9c05582c394b0cd9fd4a4381285d3ad6698981c) only on ftp.debian.org.
Tue Nov 5 15:26:29 UTC 2019 - downloading .json for akonadi-backend-mysql_4%3a18.08.3-5_all.deb (c9c05582c394b0cd9fd4a4381285d3ad6698981c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c9c05582c394b0cd9fd4a4381285d3ad6698981c
Tue Nov 5 15:27:02 UTC 2019 - UNREPRODUCIBLE: akonadi-backend-mysql_4%3a18.08.3-5_all.deb (00156e686ae5b416fedaabdcfb95c6dbe18795ca) only on ftp.debian.org.
Tue Nov 5 15:27:02 UTC 2019 - downloading .json for akonadi-backend-postgresql_4%3a18.08.3-5_all.deb (00156e686ae5b416fedaabdcfb95c6dbe18795ca) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/00156e686ae5b416fedaabdcfb95c6dbe18795ca
Tue Nov 5 15:27:36 UTC 2019 - UNREPRODUCIBLE: akonadi-backend-postgresql_4%3a18.08.3-5_all.deb (de9494fa1373879e0e60817662443780dee6e8f0) only on ftp.debian.org.
Tue Nov 5 15:27:37 UTC 2019 - downloading .json for akonadi-backend-sqlite_4%3a18.08.3-5_amd64.deb (de9494fa1373879e0e60817662443780dee6e8f0) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/de9494fa1373879e0e60817662443780dee6e8f0
Tue Nov 5 15:28:10 UTC 2019 - UNREPRODUCIBLE: akonadi-backend-sqlite_4%3a18.08.3-5_amd64.deb (ad0b85ad2065044da748311e2eb643b0bca3f275) only on ftp.debian.org.
Tue Nov 5 15:28:11 UTC 2019 - downloading .json for akonadi-contacts-data_4%3a18.08.3-1_all.deb (ad0b85ad2065044da748311e2eb643b0bca3f275) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ad0b85ad2065044da748311e2eb643b0bca3f275
Tue Nov 5 15:28:44 UTC 2019 - UNREPRODUCIBLE: akonadi-contacts-data_4%3a18.08.3-1_all.deb (2f6dd6d705705b3ca1a03ce02b485d2fcc83174d) only on ftp.debian.org.
Tue Nov 5 15:28:45 UTC 2019 - downloading .json for akonadi-import-wizard_4%3a18.08.3-1_amd64.deb (2f6dd6d705705b3ca1a03ce02b485d2fcc83174d) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2f6dd6d705705b3ca1a03ce02b485d2fcc83174d
Tue Nov 5 15:29:17 UTC 2019 - UNREPRODUCIBLE: akonadi-import-wizard_4%3a18.08.3-1_amd64.deb (04fd284adfe06ca3bc8b5611b42e891859992c42) only on ftp.debian.org.
Tue Nov 5 15:29:18 UTC 2019 - downloading .json for akonadi-mime-data_4%3a18.08.3-1_all.deb (04fd284adfe06ca3bc8b5611b42e891859992c42) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/04fd284adfe06ca3bc8b5611b42e891859992c42
Tue Nov 5 15:29:50 UTC 2019 - UNREPRODUCIBLE: akonadi-mime-data_4%3a18.08.3-1_all.deb (d4f126d51e3db10cd75913f4e3de143a7ee6c2f1) only on ftp.debian.org.
Tue Nov 5 15:29:51 UTC 2019 - downloading .json for akonadi-server_4%3a18.08.3-5_amd64.deb (d4f126d51e3db10cd75913f4e3de143a7ee6c2f1) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d4f126d51e3db10cd75913f4e3de143a7ee6c2f1
Tue Nov 5 15:30:24 UTC 2019 - UNREPRODUCIBLE: akonadi-server_4%3a18.08.3-5_amd64.deb (03ae749e1a1d3aff3ab2baa3b0a64e18676e58d4) only on ftp.debian.org.
Tue Nov 5 15:30:24 UTC 2019 - downloading .json for akonadiconsole_4%3a18.08.3-1_amd64.deb (03ae749e1a1d3aff3ab2baa3b0a64e18676e58d4) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/03ae749e1a1d3aff3ab2baa3b0a64e18676e58d4
Tue Nov 5 15:30:57 UTC 2019 - UNREPRODUCIBLE: akonadiconsole_4%3a18.08.3-1_amd64.deb (8e7feb7edf8a86007f91665d851871af1996c194) only on ftp.debian.org.
Tue Nov 5 15:30:57 UTC 2019 - downloading .json for akqml_8.5.0+dfsg-2_amd64.deb (8e7feb7edf8a86007f91665d851871af1996c194) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/8e7feb7edf8a86007f91665d851871af1996c194
Tue Nov 5 15:31:30 UTC 2019 - UNREPRODUCIBLE: akqml_8.5.0+dfsg-2_amd64.deb (ecbf6d5499e23c41667d1f71cb128f18532051e0) only on ftp.debian.org.
Tue Nov 5 15:31:31 UTC 2019 - downloading .json for akregator_4%3a18.08.3-2_amd64.deb (ecbf6d5499e23c41667d1f71cb128f18532051e0) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ecbf6d5499e23c41667d1f71cb128f18532051e0
Tue Nov 5 15:32:03 UTC 2019 - UNREPRODUCIBLE: akregator_4%3a18.08.3-2_amd64.deb (b91d7c6a94f48bee3a63d633f14c023714549694) only on ftp.debian.org.
Tue Nov 5 15:32:04 UTC 2019 - downloading .json for alacarte_3.11.91-4_all.deb (b91d7c6a94f48bee3a63d633f14c023714549694) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/b91d7c6a94f48bee3a63d633f14c023714549694
Tue Nov 5 15:32:38 UTC 2019 - UNREPRODUCIBLE: alacarte_3.11.91-4_all.deb (88b110e2d04e48ff140a424f29a8ebe69adfa6e3) only on ftp.debian.org.
Tue Nov 5 15:32:39 UTC 2019 - downloading .json for aladin_10.076+dfsg-1_all.deb (88b110e2d04e48ff140a424f29a8ebe69adfa6e3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/88b110e2d04e48ff140a424f29a8ebe69adfa6e3
Tue Nov 5 15:33:13 UTC 2019 - UNREPRODUCIBLE: aladin_10.076+dfsg-1_all.deb (033ebd41581d13c84ac6cfaab782db18b3d98d12) only on ftp.debian.org.
Tue Nov 5 15:33:14 UTC 2019 - downloading .json for albatross-gtk-theme_1.7.4-1_all.deb (033ebd41581d13c84ac6cfaab782db18b3d98d12) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/033ebd41581d13c84ac6cfaab782db18b3d98d12
Tue Nov 5 15:33:46 UTC 2019 - UNREPRODUCIBLE: albatross-gtk-theme_1.7.4-1_all.deb (165056377134b483a0179265c24dca7762960669) only on ftp.debian.org.
Tue Nov 5 15:33:47 UTC 2019 - downloading .json for aldo_0.7.7-1+b4_amd64.deb (165056377134b483a0179265c24dca7762960669) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/165056377134b483a0179265c24dca7762960669
Tue Nov 5 15:34:20 UTC 2019 - UNREPRODUCIBLE: aldo_0.7.7-1+b4_amd64.deb (5cf6e967de939169a3aa111ca6e94da6b8488ad1) only on ftp.debian.org.
Tue Nov 5 15:34:20 UTC 2019 - downloading .json for ale_0.9.0.3-3_amd64.deb (5cf6e967de939169a3aa111ca6e94da6b8488ad1) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5cf6e967de939169a3aa111ca6e94da6b8488ad1
Tue Nov 5 15:34:53 UTC 2019 - UNREPRODUCIBLE: ale_0.9.0.3-3_amd64.deb (1cf1caca6380ea69d41c7f8516563d6ca001e7cb) only on ftp.debian.org.
Tue Nov 5 15:34:53 UTC 2019 - downloading .json for alembic_1.0.0-3_all.deb (1cf1caca6380ea69d41c7f8516563d6ca001e7cb) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/1cf1caca6380ea69d41c7f8516563d6ca001e7cb
Tue Nov 5 15:35:26 UTC 2019 - UNREPRODUCIBLE: alembic_1.0.0-3_all.deb (20e7a3d8b2fde74a17c7dd03ad40223ce1e4b66a) only on ftp.debian.org.
Tue Nov 5 15:35:27 UTC 2019 - downloading .json for alevt_1%3a1.6.2-5.1+b2_amd64.deb (20e7a3d8b2fde74a17c7dd03ad40223ce1e4b66a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/20e7a3d8b2fde74a17c7dd03ad40223ce1e4b66a
Tue Nov 5 15:35:59 UTC 2019 - UNREPRODUCIBLE: alevt_1%3a1.6.2-5.1+b2_amd64.deb (e3b7b584d607d246efd93a534fb80a768a4be04c) only on ftp.debian.org.
Tue Nov 5 15:36:00 UTC 2019 - downloading .json for alex_3.2.4-4_amd64.deb (e3b7b584d607d246efd93a534fb80a768a4be04c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e3b7b584d607d246efd93a534fb80a768a4be04c
Tue Nov 5 15:36:34 UTC 2019 - UNREPRODUCIBLE: alex_3.2.4-4_amd64.deb (0cd1d3e13caf7ae9aa25a301610c5d83b3834627) only on ftp.debian.org.
Tue Nov 5 15:36:35 UTC 2019 - downloading .json for alex4_1.1-8_amd64.deb (0cd1d3e13caf7ae9aa25a301610c5d83b3834627) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/0cd1d3e13caf7ae9aa25a301610c5d83b3834627
Tue Nov 5 15:37:07 UTC 2019 - UNREPRODUCIBLE: alex4_1.1-8_amd64.deb (21476fc5b3f47678d7149e11a94341b750b838cf) only on ftp.debian.org.
Tue Nov 5 15:37:08 UTC 2019 - downloading .json for alex4-data_1.1-8_all.deb (21476fc5b3f47678d7149e11a94341b750b838cf) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/21476fc5b3f47678d7149e11a94341b750b838cf
Tue Nov 5 15:37:41 UTC 2019 - UNREPRODUCIBLE: alex4-data_1.1-8_all.deb (cb32017bd765372e8fbd8b87493de73ba1864560) only on ftp.debian.org.
Tue Nov 5 15:37:41 UTC 2019 - downloading .json for alfa_1.0-3+b1_amd64.deb (cb32017bd765372e8fbd8b87493de73ba1864560) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/cb32017bd765372e8fbd8b87493de73ba1864560
Tue Nov 5 15:38:13 UTC 2019 - UNREPRODUCIBLE: alfa_1.0-3+b1_amd64.deb (bd531e959f057ed483d6305052e89181eb5576ea) only on ftp.debian.org.
Tue Nov 5 15:38:14 UTC 2019 - downloading .json for alfred_2018.2-1_amd64.deb (bd531e959f057ed483d6305052e89181eb5576ea) from buildinfo.debian.net
Tue Nov 5 15:38:45 UTC 2019 - UNREPRODUCIBLE: alfred_2018.2-1_amd64.deb (65d9a1f4c04b05c2e73351033aacb7ef5f01e27e) only on ftp.debian.org.
Tue Nov 5 15:38:46 UTC 2019 - downloading .json for algobox_1.0.2+dfsg-2_amd64.deb (65d9a1f4c04b05c2e73351033aacb7ef5f01e27e) from buildinfo.debian.net
Tue Nov 5 15:39:16 UTC 2019 - UNREPRODUCIBLE: algobox_1.0.2+dfsg-2_amd64.deb (41c3ead9799f3a1fdb87cbbe1a6df4f7c0e70cad) only on ftp.debian.org.
Tue Nov 5 15:39:17 UTC 2019 - downloading .json for algol68g_2.8.4-1_amd64.deb (41c3ead9799f3a1fdb87cbbe1a6df4f7c0e70cad) from buildinfo.debian.net
Tue Nov 5 15:39:48 UTC 2019 - REPRODUCIBLE: algol68g_2.8.4-1_amd64.deb (f40241de8018b7e68c18a9ee2732ec5d693f1693) - reproduced 7 times.
Tue Nov 5 15:39:49 UTC 2019 - downloading .json for alice_0.19-2_all.deb (f40241de8018b7e68c18a9ee2732ec5d693f1693) from buildinfo.debian.net
Tue Nov 5 15:40:19 UTC 2019 - UNREPRODUCIBLE: alice_0.19-2_all.deb (ed4ab99e5a9d00399c303f91de2ac3b7f8447d78) only on ftp.debian.org.
Tue Nov 5 15:40:20 UTC 2019 - downloading .json for alien_8.95_all.deb (ed4ab99e5a9d00399c303f91de2ac3b7f8447d78) from buildinfo.debian.net
Tue Nov 5 15:40:50 UTC 2019 - REPRODUCIBLE: alien_8.95_all.deb (e000a605e5783e475cd42127ddb0572ebaab8d8b) - reproduced 107 times.
Tue Nov 5 15:40:51 UTC 2019 - downloading .json for alien-hunter_1.7-7_all.deb (e000a605e5783e475cd42127ddb0572ebaab8d8b) from buildinfo.debian.net
Tue Nov 5 15:41:22 UTC 2019 - UNREPRODUCIBLE: alien-hunter_1.7-7_all.deb (ada5c33ee266131a7c3680eb1111a518d858d3fd) only on ftp.debian.org.
Tue Nov 5 15:41:22 UTC 2019 - downloading .json for alienblaster_1.1.0-10_amd64.deb (ada5c33ee266131a7c3680eb1111a518d858d3fd) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins1352215906153435110.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_forward_runner #235
From jenkins at jenkins.debian.net Tue Nov 5 15:41:24 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 15:41:24 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_reverse_runner #290
In-Reply-To: <1139607460.134.1572761420839.JavaMail.jenkins@jenkins>
References: <1139607460.134.1572761420839.JavaMail.jenkins@jenkins>
Message-ID: <1353318724.75.1572968484238.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 61.01 KB...]
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/b3c639f4c67893745c9b0157e45bbe1030a3f294
Tue Nov 5 15:02:53 UTC 2019 - UNREPRODUCIBLE: yubikey-personalization-gui_3.1.24-1_amd64.deb (ba11ea9bc3a8156f85b84d51ac70fd3d15123462) only on ftp.debian.org.
Tue Nov 5 15:02:54 UTC 2019 - downloading .json for yubikey-personalization_1.19.3-3+deb10u1_amd64.deb (ba11ea9bc3a8156f85b84d51ac70fd3d15123462) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ba11ea9bc3a8156f85b84d51ac70fd3d15123462
Tue Nov 5 15:03:26 UTC 2019 - UNREPRODUCIBLE: yubikey-personalization_1.19.3-3+deb10u1_amd64.deb (2dac095a03bfa2faf1babf8eca5889d504ac964a) only on ftp.debian.org.
Tue Nov 5 15:03:26 UTC 2019 - downloading .json for yubikey-manager_2.1.0-1_all.deb (2dac095a03bfa2faf1babf8eca5889d504ac964a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2dac095a03bfa2faf1babf8eca5889d504ac964a
Tue Nov 5 15:03:59 UTC 2019 - UNREPRODUCIBLE: yubikey-manager_2.1.0-1_all.deb (9e9f7d18fb8b7597d07addf5eff82827aa53dea6) only on ftp.debian.org.
Tue Nov 5 15:04:00 UTC 2019 - downloading .json for yubikey-luks_0.5.1+29.g5df2b95-1_all.deb (9e9f7d18fb8b7597d07addf5eff82827aa53dea6) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9e9f7d18fb8b7597d07addf5eff82827aa53dea6
Tue Nov 5 15:04:33 UTC 2019 - UNREPRODUCIBLE: yubikey-luks_0.5.1+29.g5df2b95-1_all.deb (fe7a8917307ac39678ad013ea85032dc16d27a68) only on ftp.debian.org.
Tue Nov 5 15:04:34 UTC 2019 - downloading .json for ytree_1.94-2+b1_amd64.deb (fe7a8917307ac39678ad013ea85032dc16d27a68) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/fe7a8917307ac39678ad013ea85032dc16d27a68
Tue Nov 5 15:05:09 UTC 2019 - UNREPRODUCIBLE: ytree_1.94-2+b1_amd64.deb (b935954036e328604544a64a3871c2dcc20865df) only on ftp.debian.org.
Tue Nov 5 15:05:10 UTC 2019 - downloading .json for ytnef-tools_1.9.3-1_amd64.deb (b935954036e328604544a64a3871c2dcc20865df) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/b935954036e328604544a64a3871c2dcc20865df
Tue Nov 5 15:05:44 UTC 2019 - UNREPRODUCIBLE: ytnef-tools_1.9.3-1_amd64.deb (4732a11faf7f1ac5ce5532b7f91da0c8274e7562) only on ftp.debian.org.
Tue Nov 5 15:05:45 UTC 2019 - downloading .json for ytalk_3.3.0-9+b3_amd64.deb (4732a11faf7f1ac5ce5532b7f91da0c8274e7562) from buildinfo.debian.net
Tue Nov 5 15:06:16 UTC 2019 - UNREPRODUCIBLE: ytalk_3.3.0-9+b3_amd64.deb (a17af5f36fb6427a3252f36dcb5de5193c2cf090) only on ftp.debian.org.
Tue Nov 5 15:06:17 UTC 2019 - downloading .json for yrmcds_1.1.8-1.1_amd64.deb (a17af5f36fb6427a3252f36dcb5de5193c2cf090) from buildinfo.debian.net
Tue Nov 5 15:06:48 UTC 2019 - UNREPRODUCIBLE: yrmcds_1.1.8-1.1_amd64.deb (31a3f08f3b0a9039920e95b9e6db45d97883d8d4) only on ftp.debian.org.
Tue Nov 5 15:06:48 UTC 2019 - downloading .json for yowsup-cli_2.5.7-4_all.deb (31a3f08f3b0a9039920e95b9e6db45d97883d8d4) from buildinfo.debian.net
Tue Nov 5 15:07:20 UTC 2019 - UNREPRODUCIBLE: yowsup-cli_2.5.7-4_all.deb (f43f7f74f84108698f5dd59be6f8107652f80f85) only on ftp.debian.org.
Tue Nov 5 15:07:21 UTC 2019 - downloading .json for youtube-dl_2019.01.17-1.1_all.deb (f43f7f74f84108698f5dd59be6f8107652f80f85) from buildinfo.debian.net
Tue Nov 5 15:07:53 UTC 2019 - REPRODUCIBLE: youtube-dl_2019.01.17-1.1_all.deb (b87eb4ea535643a0287427dc2dc09d833250eedf) - reproduced 141 times.
Tue Nov 5 15:07:54 UTC 2019 - downloading .json for yotta-doc_0.18.5-2_all.deb (b87eb4ea535643a0287427dc2dc09d833250eedf) from buildinfo.debian.net
Tue Nov 5 15:08:25 UTC 2019 - REPRODUCIBLE: yotta-doc_0.18.5-2_all.deb (31c1c42292dc6a527bfb1c28d88a2ff8d4d9f5eb) - reproduced 33 times.
Tue Nov 5 15:08:26 UTC 2019 - downloading .json for yotta_0.18.5-2_all.deb (31c1c42292dc6a527bfb1c28d88a2ff8d4d9f5eb) from buildinfo.debian.net
Tue Nov 5 15:08:57 UTC 2019 - REPRODUCIBLE: yotta_0.18.5-2_all.deb (8a623ed4284192a1cf7d82c21b6a0961122e162b) - reproduced 83 times.
Tue Nov 5 15:08:58 UTC 2019 - downloading .json for yosys-doc_0.8-1_all.deb (8a623ed4284192a1cf7d82c21b6a0961122e162b) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/8a623ed4284192a1cf7d82c21b6a0961122e162b
Tue Nov 5 15:09:29 UTC 2019 - UNREPRODUCIBLE: yosys-doc_0.8-1_all.deb (4679e1f303541b76d6ad6acd65036f8146fa3d03) only on ftp.debian.org.
Tue Nov 5 15:09:30 UTC 2019 - downloading .json for yosys-dev_0.8-1_amd64.deb (4679e1f303541b76d6ad6acd65036f8146fa3d03) from buildinfo.debian.net
Tue Nov 5 15:10:00 UTC 2019 - UNREPRODUCIBLE: yosys-dev_0.8-1_amd64.deb (21d67de823cf9aab381ae59b0c0f7b5e4b29c5fa) only on ftp.debian.org.
Tue Nov 5 15:10:01 UTC 2019 - downloading .json for yosys_0.8-1_amd64.deb (21d67de823cf9aab381ae59b0c0f7b5e4b29c5fa) from buildinfo.debian.net
Tue Nov 5 15:10:32 UTC 2019 - REPRODUCIBLE: yosys_0.8-1_amd64.deb (d277eb18603d4e494e05c1de97439d0b13513401) - reproduced 23 times.
Tue Nov 5 15:10:33 UTC 2019 - downloading .json for yoshimi-doc_1.5.10.1-1_all.deb (d277eb18603d4e494e05c1de97439d0b13513401) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d277eb18603d4e494e05c1de97439d0b13513401
Tue Nov 5 15:11:05 UTC 2019 - UNREPRODUCIBLE: yoshimi-doc_1.5.10.1-1_all.deb (0a54b0205e371c5ca2a0f078fffea50ea0792934) only on ftp.debian.org.
Tue Nov 5 15:11:06 UTC 2019 - downloading .json for yoshimi-data_1.5.10.1-1_all.deb (0a54b0205e371c5ca2a0f078fffea50ea0792934) from buildinfo.debian.net
Tue Nov 5 15:11:38 UTC 2019 - REPRODUCIBLE: yoshimi-data_1.5.10.1-1_all.deb (57ca6fbd94f9a9a0f5489f5447c5a556142dbb38) - reproduced 90 times.
Tue Nov 5 15:11:39 UTC 2019 - downloading .json for yoshimi_1.5.10.1-1_amd64.deb (57ca6fbd94f9a9a0f5489f5447c5a556142dbb38) from buildinfo.debian.net
Tue Nov 5 15:12:11 UTC 2019 - REPRODUCIBLE: yoshimi_1.5.10.1-1_amd64.deb (1d82a9fe83d34ecec3be25d67aa7c55a93ec2bb3) - reproduced 90 times.
Tue Nov 5 15:12:12 UTC 2019 - downloading .json for yorick-z_1.2.0+cvs20080115-5+b2_amd64.deb (1d82a9fe83d34ecec3be25d67aa7c55a93ec2bb3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/1d82a9fe83d34ecec3be25d67aa7c55a93ec2bb3
Tue Nov 5 15:12:45 UTC 2019 - UNREPRODUCIBLE: yorick-z_1.2.0+cvs20080115-5+b2_amd64.deb (ae86664e237a845aea3befece7830f9273f338a0) only on ftp.debian.org.
Tue Nov 5 15:12:45 UTC 2019 - downloading .json for yorick-yutils_1.5.2-1_all.deb (ae86664e237a845aea3befece7830f9273f338a0) from buildinfo.debian.net
Tue Nov 5 15:13:15 UTC 2019 - UNREPRODUCIBLE: yorick-yutils_1.5.2-1_all.deb (8171da4bbcf62de20728463eb6571849cb84abb8) only on ftp.debian.org.
Tue Nov 5 15:13:16 UTC 2019 - downloading .json for yorick-ynfft_1.0.3-1_amd64.deb (8171da4bbcf62de20728463eb6571849cb84abb8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/8171da4bbcf62de20728463eb6571849cb84abb8
Tue Nov 5 15:13:48 UTC 2019 - UNREPRODUCIBLE: yorick-ynfft_1.0.3-1_amd64.deb (585cc5014b9f9636adaf63a8ae04210b77a54070) only on ftp.debian.org.
Tue Nov 5 15:13:49 UTC 2019 - downloading .json for yorick-ygsl_1.2.1-1+b1_amd64.deb (585cc5014b9f9636adaf63a8ae04210b77a54070) from buildinfo.debian.net
Tue Nov 5 15:14:23 UTC 2019 - UNREPRODUCIBLE: yorick-ygsl_1.2.1-1+b1_amd64.deb (d63f01019af5ead511d19cf9a294a28e6911ffc1) only on ftp.debian.org.
Tue Nov 5 15:14:24 UTC 2019 - downloading .json for yorick-yeti-tiff_6.4.0-1_amd64.deb (d63f01019af5ead511d19cf9a294a28e6911ffc1) from buildinfo.debian.net
Tue Nov 5 15:14:57 UTC 2019 - UNREPRODUCIBLE: yorick-yeti-tiff_6.4.0-1_amd64.deb (179e135a982aef706c0a1fff936ce3bfa3b228eb) only on ftp.debian.org.
Tue Nov 5 15:14:58 UTC 2019 - downloading .json for yorick-yeti-regex_6.4.0-1_amd64.deb (179e135a982aef706c0a1fff936ce3bfa3b228eb) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/179e135a982aef706c0a1fff936ce3bfa3b228eb
Tue Nov 5 15:15:29 UTC 2019 - UNREPRODUCIBLE: yorick-yeti-regex_6.4.0-1_amd64.deb (03980ae2d635ea7d5f20cf51938d7187cbde1d20) only on ftp.debian.org.
Tue Nov 5 15:15:29 UTC 2019 - downloading .json for yorick-yeti-fftw_6.4.0-1_amd64.deb (03980ae2d635ea7d5f20cf51938d7187cbde1d20) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/03980ae2d635ea7d5f20cf51938d7187cbde1d20
Tue Nov 5 15:16:01 UTC 2019 - UNREPRODUCIBLE: yorick-yeti-fftw_6.4.0-1_amd64.deb (4b91a56dcdb502809d9ff9c5599f3820613f31b2) only on ftp.debian.org.
Tue Nov 5 15:16:01 UTC 2019 - downloading .json for yorick-yeti_6.4.0-1_amd64.deb (4b91a56dcdb502809d9ff9c5599f3820613f31b2) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/4b91a56dcdb502809d9ff9c5599f3820613f31b2
Tue Nov 5 15:16:34 UTC 2019 - UNREPRODUCIBLE: yorick-yeti_6.4.0-1_amd64.deb (baf2dc4e82771ab7af75fb8bc58d5d03687cba99) only on ftp.debian.org.
Tue Nov 5 15:16:34 UTC 2019 - downloading .json for yorick-yao_5.4.0-1_amd64.deb (baf2dc4e82771ab7af75fb8bc58d5d03687cba99) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/baf2dc4e82771ab7af75fb8bc58d5d03687cba99
Tue Nov 5 15:17:10 UTC 2019 - UNREPRODUCIBLE: yorick-yao_5.4.0-1_amd64.deb (f3d124b2d9542d13e97fe361ac196b34d182ff98) only on ftp.debian.org.
Tue Nov 5 15:17:11 UTC 2019 - downloading .json for yorick-svipc_0.16-3_amd64.deb (f3d124b2d9542d13e97fe361ac196b34d182ff98) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f3d124b2d9542d13e97fe361ac196b34d182ff98
Tue Nov 5 15:17:43 UTC 2019 - UNREPRODUCIBLE: yorick-svipc_0.16-3_amd64.deb (345740936402250774b621807dfbd4fd18e5dfbf) only on ftp.debian.org.
Tue Nov 5 15:17:43 UTC 2019 - downloading .json for yorick-spydr_0.8.2-3_all.deb (345740936402250774b621807dfbd4fd18e5dfbf) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/345740936402250774b621807dfbd4fd18e5dfbf
Tue Nov 5 15:18:16 UTC 2019 - UNREPRODUCIBLE: yorick-spydr_0.8.2-3_all.deb (5720587c4416eadd216b7968c620cacbda58c739) only on ftp.debian.org.
Tue Nov 5 15:18:17 UTC 2019 - downloading .json for yorick-soy_1.4.0-3_amd64.deb (5720587c4416eadd216b7968c620cacbda58c739) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5720587c4416eadd216b7968c620cacbda58c739
Tue Nov 5 15:18:49 UTC 2019 - UNREPRODUCIBLE: yorick-soy_1.4.0-3_amd64.deb (ac40270ebe353f9c5a1d8ee6fd619bf59e826195) only on ftp.debian.org.
Tue Nov 5 15:18:50 UTC 2019 - downloading .json for yorick-optimpack_1.3.2+dfsg+1.4.0-1_amd64.deb (ac40270ebe353f9c5a1d8ee6fd619bf59e826195) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ac40270ebe353f9c5a1d8ee6fd619bf59e826195
Tue Nov 5 15:19:24 UTC 2019 - UNREPRODUCIBLE: yorick-optimpack_1.3.2+dfsg+1.4.0-1_amd64.deb (11f4c126242e73a22015399e8d51ed6e2775d691) only on ftp.debian.org.
Tue Nov 5 15:19:25 UTC 2019 - downloading .json for yorick-mpy-openmpi_2.2.04+dfsg1-10_amd64.deb (11f4c126242e73a22015399e8d51ed6e2775d691) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/11f4c126242e73a22015399e8d51ed6e2775d691
Tue Nov 5 15:20:00 UTC 2019 - UNREPRODUCIBLE: yorick-mpy-openmpi_2.2.04+dfsg1-10_amd64.deb (5932d20e7d54c8be19ec774acf8acf51cbc87e9e) only on ftp.debian.org.
Tue Nov 5 15:20:01 UTC 2019 - downloading .json for yorick-mpy-mpich2_2.2.04+dfsg1-10_amd64.deb (5932d20e7d54c8be19ec774acf8acf51cbc87e9e) from buildinfo.debian.net
Tue Nov 5 15:20:31 UTC 2019 - UNREPRODUCIBLE: yorick-mpy-mpich2_2.2.04+dfsg1-10_amd64.deb (34c63e2fe0b86284e162f927f1af789cff8ca4e5) only on ftp.debian.org.
Tue Nov 5 15:20:32 UTC 2019 - downloading .json for yorick-mpy-common_2.2.04+dfsg1-10_all.deb (34c63e2fe0b86284e162f927f1af789cff8ca4e5) from buildinfo.debian.net
Tue Nov 5 15:21:02 UTC 2019 - UNREPRODUCIBLE: yorick-mpy-common_2.2.04+dfsg1-10_all.deb (0d0d6fb260546c2a7aa98fa32ec8cd448cb6a86c) only on ftp.debian.org.
Tue Nov 5 15:21:03 UTC 2019 - downloading .json for yorick-mpeg_0.1-3_amd64.deb (0d0d6fb260546c2a7aa98fa32ec8cd448cb6a86c) from buildinfo.debian.net
Tue Nov 5 15:21:36 UTC 2019 - REPRODUCIBLE: yorick-mpeg_0.1-3_amd64.deb (c59763b00367e3ab2bc18f4f1375cca5ff70ac3d) - reproduced 116 times.
Tue Nov 5 15:21:37 UTC 2019 - downloading .json for yorick-ml4_0.6.0-3_amd64.deb (c59763b00367e3ab2bc18f4f1375cca5ff70ac3d) from buildinfo.debian.net
Tue Nov 5 15:22:07 UTC 2019 - UNREPRODUCIBLE: yorick-ml4_0.6.0-3_amd64.deb (cc83c94255a26915f04d78e0d6d096820b188d3d) only on ftp.debian.org.
Tue Nov 5 15:22:08 UTC 2019 - downloading .json for yorick-mira_1.1.0+git20170124.3bd1c3~dfsg1-2_all.deb (cc83c94255a26915f04d78e0d6d096820b188d3d) from buildinfo.debian.net
Tue Nov 5 15:22:38 UTC 2019 - UNREPRODUCIBLE: yorick-mira_1.1.0+git20170124.3bd1c3~dfsg1-2_all.deb (52dbe53e1bcd2422fae6a9566052c38eaab57002) only on ftp.debian.org.
Tue Nov 5 15:22:39 UTC 2019 - downloading .json for yorick-imutil_0.5.7-3_amd64.deb (52dbe53e1bcd2422fae6a9566052c38eaab57002) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/52dbe53e1bcd2422fae6a9566052c38eaab57002
Tue Nov 5 15:23:12 UTC 2019 - UNREPRODUCIBLE: yorick-imutil_0.5.7-3_amd64.deb (ca7a744b527c5a75b3948481250dfa1ed4bac8f8) only on ftp.debian.org.
Tue Nov 5 15:23:13 UTC 2019 - downloading .json for yorick-hdf5_0.8.0-8+b1_amd64.deb (ca7a744b527c5a75b3948481250dfa1ed4bac8f8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ca7a744b527c5a75b3948481250dfa1ed4bac8f8
Tue Nov 5 15:23:46 UTC 2019 - UNREPRODUCIBLE: yorick-hdf5_0.8.0-8+b1_amd64.deb (6df0deaefc2451e74113eb24da385b5d37b363a8) only on ftp.debian.org.
Tue Nov 5 15:23:47 UTC 2019 - downloading .json for yorick-gyoto_1.3.1-1_amd64.deb (6df0deaefc2451e74113eb24da385b5d37b363a8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6df0deaefc2451e74113eb24da385b5d37b363a8
Tue Nov 5 15:24:20 UTC 2019 - UNREPRODUCIBLE: yorick-gyoto_1.3.1-1_amd64.deb (9c71e6efb2520b14838b51c513cd45da81000266) only on ftp.debian.org.
Tue Nov 5 15:24:21 UTC 2019 - downloading .json for yorick-gy_0.0.5-1_amd64.deb (9c71e6efb2520b14838b51c513cd45da81000266) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9c71e6efb2520b14838b51c513cd45da81000266
Tue Nov 5 15:24:53 UTC 2019 - UNREPRODUCIBLE: yorick-gy_0.0.5-1_amd64.deb (9fc2b0ee705c0c24c7b9121dca9fbb0cbe7e2362) only on ftp.debian.org.
Tue Nov 5 15:24:54 UTC 2019 - downloading .json for yorick-gl_1.1+cvs20070922+dfsg-6.1_amd64.deb (9fc2b0ee705c0c24c7b9121dca9fbb0cbe7e2362) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9fc2b0ee705c0c24c7b9121dca9fbb0cbe7e2362
Tue Nov 5 15:25:30 UTC 2019 - UNREPRODUCIBLE: yorick-gl_1.1+cvs20070922+dfsg-6.1_amd64.deb (e78e945dd853be1efbae63a57eb9484c0d85c8cb) only on ftp.debian.org.
Tue Nov 5 15:25:31 UTC 2019 - downloading .json for yorick-full_2.2.04+dfsg1+full_amd64.deb (e78e945dd853be1efbae63a57eb9484c0d85c8cb) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e78e945dd853be1efbae63a57eb9484c0d85c8cb
Tue Nov 5 15:26:03 UTC 2019 - UNREPRODUCIBLE: yorick-full_2.2.04+dfsg1+full_amd64.deb (2245b71ca98fb7cff933aa8759c97723ec16b03b) only on ftp.debian.org.
Tue Nov 5 15:26:04 UTC 2019 - downloading .json for yorick-doc_2.2.04+dfsg1-10_all.deb (2245b71ca98fb7cff933aa8759c97723ec16b03b) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2245b71ca98fb7cff933aa8759c97723ec16b03b
Tue Nov 5 15:26:37 UTC 2019 - UNREPRODUCIBLE: yorick-doc_2.2.04+dfsg1-10_all.deb (c25a4640f0b55cd13eadbc0e209c24d7afcc9ed4) only on ftp.debian.org.
Tue Nov 5 15:26:37 UTC 2019 - downloading .json for yorick-dev_2.2.04+dfsg1-10_amd64.deb (c25a4640f0b55cd13eadbc0e209c24d7afcc9ed4) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c25a4640f0b55cd13eadbc0e209c24d7afcc9ed4
Tue Nov 5 15:27:10 UTC 2019 - UNREPRODUCIBLE: yorick-dev_2.2.04+dfsg1-10_amd64.deb (2f2567926a1e744fea67ebc0e91552622ea3da86) only on ftp.debian.org.
Tue Nov 5 15:27:11 UTC 2019 - downloading .json for yorick-data_2.2.04+dfsg1-10_all.deb (2f2567926a1e744fea67ebc0e91552622ea3da86) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2f2567926a1e744fea67ebc0e91552622ea3da86
Tue Nov 5 15:27:45 UTC 2019 - UNREPRODUCIBLE: yorick-data_2.2.04+dfsg1-10_all.deb (ac164b52cb9b7db188c5a02381f9e6b247f679e7) only on ftp.debian.org.
Tue Nov 5 15:27:46 UTC 2019 - downloading .json for yorick-curses_0.1-6+b2_amd64.deb (ac164b52cb9b7db188c5a02381f9e6b247f679e7) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ac164b52cb9b7db188c5a02381f9e6b247f679e7
Tue Nov 5 15:28:20 UTC 2019 - UNREPRODUCIBLE: yorick-curses_0.1-6+b2_amd64.deb (daf951657bd7fcb6641b785b09dc3a12e76f6b32) only on ftp.debian.org.
Tue Nov 5 15:28:21 UTC 2019 - downloading .json for yorick-cubeview_2.2-2_all.deb (daf951657bd7fcb6641b785b09dc3a12e76f6b32) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/daf951657bd7fcb6641b785b09dc3a12e76f6b32
Tue Nov 5 15:28:54 UTC 2019 - UNREPRODUCIBLE: yorick-cubeview_2.2-2_all.deb (eb829e05b779748af6525c44244d29b37753ca7c) only on ftp.debian.org.
Tue Nov 5 15:28:55 UTC 2019 - downloading .json for yorick-av_0.0.5-1+b1_amd64.deb (eb829e05b779748af6525c44244d29b37753ca7c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/eb829e05b779748af6525c44244d29b37753ca7c
Tue Nov 5 15:29:32 UTC 2019 - UNREPRODUCIBLE: yorick-av_0.0.5-1+b1_amd64.deb (f104bb7850d12e0c2f46f8ccc91922a41a30e9cf) only on ftp.debian.org.
Tue Nov 5 15:29:33 UTC 2019 - downloading .json for yorick_2.2.04+dfsg1-10_amd64.deb (f104bb7850d12e0c2f46f8ccc91922a41a30e9cf) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f104bb7850d12e0c2f46f8ccc91922a41a30e9cf
Tue Nov 5 15:30:05 UTC 2019 - UNREPRODUCIBLE: yorick_2.2.04+dfsg1-10_amd64.deb (e7ea3fa067ca76cbd1136c1ff3c4e931132d00ac) only on ftp.debian.org.
Tue Nov 5 15:30:06 UTC 2019 - downloading .json for yokadi_1.1.1-2_all.deb (e7ea3fa067ca76cbd1136c1ff3c4e931132d00ac) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e7ea3fa067ca76cbd1136c1ff3c4e931132d00ac
Tue Nov 5 15:30:40 UTC 2019 - UNREPRODUCIBLE: yokadi_1.1.1-2_all.deb (f64bbb00323a2648a280ade30c14e02e4aca1dbc) only on ftp.debian.org.
Tue Nov 5 15:30:40 UTC 2019 - downloading .json for yodl-doc_4.02.00-3_all.deb (f64bbb00323a2648a280ade30c14e02e4aca1dbc) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f64bbb00323a2648a280ade30c14e02e4aca1dbc
Tue Nov 5 15:31:13 UTC 2019 - UNREPRODUCIBLE: yodl-doc_4.02.00-3_all.deb (792a9564f3c638d6e126ddabae6ebee84730b455) only on ftp.debian.org.
Tue Nov 5 15:31:13 UTC 2019 - downloading .json for yodl_4.02.00-3_amd64.deb (792a9564f3c638d6e126ddabae6ebee84730b455) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/792a9564f3c638d6e126ddabae6ebee84730b455
Tue Nov 5 15:31:46 UTC 2019 - UNREPRODUCIBLE: yodl_4.02.00-3_amd64.deb (68ff2721365c26d797706f0c7b027d99947ef432) only on ftp.debian.org.
Tue Nov 5 15:31:47 UTC 2019 - downloading .json for ykush-control_1.1.0+ds-1_amd64.deb (68ff2721365c26d797706f0c7b027d99947ef432) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/68ff2721365c26d797706f0c7b027d99947ef432
Tue Nov 5 15:32:19 UTC 2019 - UNREPRODUCIBLE: ykush-control_1.1.0+ds-1_amd64.deb (99d76d4bbcbd4f04a4d39a3ef59ccdbeec3a2f1f) only on ftp.debian.org.
Tue Nov 5 15:32:20 UTC 2019 - downloading .json for yiyantang_0.7.0-5+b1_amd64.deb (99d76d4bbcbd4f04a4d39a3ef59ccdbeec3a2f1f) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/99d76d4bbcbd4f04a4d39a3ef59ccdbeec3a2f1f
Tue Nov 5 15:32:52 UTC 2019 - UNREPRODUCIBLE: yiyantang_0.7.0-5+b1_amd64.deb (32f3931829089dacbd68a57af2c0918d4d841f70) only on ftp.debian.org.
Tue Nov 5 15:32:53 UTC 2019 - downloading .json for yi_0.18.0-1_amd64.deb (32f3931829089dacbd68a57af2c0918d4d841f70) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/32f3931829089dacbd68a57af2c0918d4d841f70
Tue Nov 5 15:33:25 UTC 2019 - UNREPRODUCIBLE: yi_0.18.0-1_amd64.deb (4b34015390842282bec490d970c32b0260cd8a56) only on ftp.debian.org.
Tue Nov 5 15:33:26 UTC 2019 - downloading .json for yhsm-yubikey-ksm_1.2.1-1_all.deb (4b34015390842282bec490d970c32b0260cd8a56) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/4b34015390842282bec490d970c32b0260cd8a56
Tue Nov 5 15:34:03 UTC 2019 - UNREPRODUCIBLE: yhsm-yubikey-ksm_1.2.1-1_all.deb (9675f66fd24f1a8663beb60b67cfe3bb78c42f07) only on ftp.debian.org.
Tue Nov 5 15:34:03 UTC 2019 - downloading .json for yhsm-validation-server_1.2.1-1_all.deb (9675f66fd24f1a8663beb60b67cfe3bb78c42f07) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9675f66fd24f1a8663beb60b67cfe3bb78c42f07
Tue Nov 5 15:34:37 UTC 2019 - UNREPRODUCIBLE: yhsm-validation-server_1.2.1-1_all.deb (e7cff0d34786d6b2d8b88876f30b17d865e0dfd8) only on ftp.debian.org.
Tue Nov 5 15:34:37 UTC 2019 - downloading .json for yhsm-tools_1.2.1-1_all.deb (e7cff0d34786d6b2d8b88876f30b17d865e0dfd8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e7cff0d34786d6b2d8b88876f30b17d865e0dfd8
Tue Nov 5 15:35:10 UTC 2019 - UNREPRODUCIBLE: yhsm-tools_1.2.1-1_all.deb (6ace62d99e96f0e020bb0e84b4c0d4ca7baf990a) only on ftp.debian.org.
Tue Nov 5 15:35:11 UTC 2019 - downloading .json for yhsm-daemon_1.2.1-1_all.deb (6ace62d99e96f0e020bb0e84b4c0d4ca7baf990a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6ace62d99e96f0e020bb0e84b4c0d4ca7baf990a
Tue Nov 5 15:35:45 UTC 2019 - UNREPRODUCIBLE: yhsm-daemon_1.2.1-1_all.deb (ab70714a82381de42ef74ec4080933834a7288d5) only on ftp.debian.org.
Tue Nov 5 15:35:46 UTC 2019 - downloading .json for yesod_1.6.0.3-4_amd64.deb (ab70714a82381de42ef74ec4080933834a7288d5) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ab70714a82381de42ef74ec4080933834a7288d5
Tue Nov 5 15:36:22 UTC 2019 - UNREPRODUCIBLE: yesod_1.6.0.3-4_amd64.deb (938b9b32611bd33de1a77fd18c437b36b1e1e832) only on ftp.debian.org.
Tue Nov 5 15:36:23 UTC 2019 - downloading .json for yersinia_0.8.2-2+b1_amd64.deb (938b9b32611bd33de1a77fd18c437b36b1e1e832) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/938b9b32611bd33de1a77fd18c437b36b1e1e832
Tue Nov 5 15:36:55 UTC 2019 - UNREPRODUCIBLE: yersinia_0.8.2-2+b1_amd64.deb (22b27551082255eb1be04b20769f9358323f0149) only on ftp.debian.org.
Tue Nov 5 15:36:56 UTC 2019 - downloading .json for yelp-xsl_3.31.90-1_all.deb (22b27551082255eb1be04b20769f9358323f0149) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/22b27551082255eb1be04b20769f9358323f0149
Tue Nov 5 15:37:28 UTC 2019 - UNREPRODUCIBLE: yelp-xsl_3.31.90-1_all.deb (481456eb81a8b08896b0f1b5784a9a285fa98a18) only on ftp.debian.org.
Tue Nov 5 15:37:29 UTC 2019 - downloading .json for yelp-tools_3.31.90-1_all.deb (481456eb81a8b08896b0f1b5784a9a285fa98a18) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/481456eb81a8b08896b0f1b5784a9a285fa98a18
Tue Nov 5 15:38:01 UTC 2019 - UNREPRODUCIBLE: yelp-tools_3.31.90-1_all.deb (69bfeaf688373c013c94984cae76a8504d013e65) only on ftp.debian.org.
Tue Nov 5 15:38:02 UTC 2019 - downloading .json for yelp_3.31.90-1_amd64.deb (69bfeaf688373c013c94984cae76a8504d013e65) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/69bfeaf688373c013c94984cae76a8504d013e65
Tue Nov 5 15:38:34 UTC 2019 - UNREPRODUCIBLE: yelp_3.31.90-1_amd64.deb (a6ad4cf496cdb79f249387ca162a94305f067469) only on ftp.debian.org.
Tue Nov 5 15:38:35 UTC 2019 - downloading .json for yeahconsole_0.3.4-5_amd64.deb (a6ad4cf496cdb79f249387ca162a94305f067469) from buildinfo.debian.net
Tue Nov 5 15:39:06 UTC 2019 - REPRODUCIBLE: yeahconsole_0.3.4-5_amd64.deb (543c1639e77de6d4c67621fd097b8b8a6043a381) - reproduced 3 times.
Tue Nov 5 15:39:06 UTC 2019 - downloading .json for ycmd_0+20181101+git600f54d-0.1+b2_amd64.deb (543c1639e77de6d4c67621fd097b8b8a6043a381) from buildinfo.debian.net
Tue Nov 5 15:39:37 UTC 2019 - UNREPRODUCIBLE: ycmd_0+20181101+git600f54d-0.1+b2_amd64.deb (61a7681ea7be618748dd649ddb48fb2b325a949c) only on ftp.debian.org.
Tue Nov 5 15:39:37 UTC 2019 - downloading .json for yc-el_5.0.0-8_amd64.deb (61a7681ea7be618748dd649ddb48fb2b325a949c) from buildinfo.debian.net
Tue Nov 5 15:40:08 UTC 2019 - UNREPRODUCIBLE: yc-el_5.0.0-8_amd64.deb (ffef33a890075e71e76caad3157a080c62210ad4) only on ftp.debian.org.
Tue Nov 5 15:40:08 UTC 2019 - downloading .json for yazc_0.4.1-1_amd64.deb (ffef33a890075e71e76caad3157a080c62210ad4) from buildinfo.debian.net
Tue Nov 5 15:40:38 UTC 2019 - UNREPRODUCIBLE: yazc_0.4.1-1_amd64.deb (885c3efe5100858f9c7f744c19ef38e25bb35e8c) only on ftp.debian.org.
Tue Nov 5 15:40:39 UTC 2019 - downloading .json for yaz-illclient_5.27.1-2_amd64.deb (885c3efe5100858f9c7f744c19ef38e25bb35e8c) from buildinfo.debian.net
Tue Nov 5 15:41:10 UTC 2019 - REPRODUCIBLE: yaz-illclient_5.27.1-2_amd64.deb (46817c293f810064146385ff877d91100e9771bc) - reproduced 2 times.
Tue Nov 5 15:41:11 UTC 2019 - downloading .json for yaz-icu_5.27.1-2_amd64.deb (46817c293f810064146385ff877d91100e9771bc) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins1233396402748084874.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_reverse_runner #290
From jenkins at jenkins.debian.net Tue Nov 5 15:50:53 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 15:50:53 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_openwrt-target-kirkwood #1
Message-ID: <995606912.76.1572969053540.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 56.55 KB...]
make[3] -C package/network/services/lldpd compile
ERROR: package/system/ucert failed to build (build variant: tiny).
make[3] -C package/system/ucert compile
ERROR: package/libs/ustream-ssl failed to build (build variant: mbedtls).
make[3] -C package/libs/ustream-ssl compile
ERROR: package/libs/ustream-ssl failed to build (build variant: wolfssl).
make[3] -C package/libs/ustream-ssl compile
ERROR: package/system/ucert failed to build (build variant: full).
ERROR: package/boot/uboot-kirkwood failed to build (build variant: ib62x0_second_stage).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/hostapd failed to build (build variant: full-internal).
make[3] -C package/network/services/hostapd compile
ERROR: package/libs/ustream-ssl failed to build (build variant: openssl).
make[3] -C package/libs/uclient compile
make[3] -C package/network/services/uhttpd compile
ERROR: package/libs/uclient failed to build.
ERROR: package/network/services/uhttpd failed to build.
make[3] -C package/network/ipv6/6in4 compile
make[3] -C package/system/opkg compile
ERROR: package/network/services/hostapd failed to build (build variant: basic).
make[3] -C package/network/services/hostapd compile
ERROR: package/system/opkg failed to build.
make[3] -C package/libs/ncurses compile
ERROR: package/network/services/hostapd failed to build (build variant: mini).
make[3] -C package/network/services/hostapd compile
ERROR: package/libs/ncurses failed to build.
make[3] -C package/utils/util-linux compile
make[3] -C package/network/utils/iftop compile
make[3] -C package/libs/readline compile
ERROR: package/libs/readline failed to build.
make[3] -C package/devel/gdb compile
ERROR: package/libs/libnetfilter-log failed to build.
ERROR: package/network/services/hostapd failed to build (build variant: full-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/utils/iperf3 failed to build (build variant: nossl).
ERROR: package/libs/libnetfilter-conntrack failed to build.
make[3] -C package/network/utils/iperf3 compile
make[3] -C package/network/services/dnsmasq compile
ERROR: package/network/utils/nftables failed to build.
ERROR: package/network/services/dnsmasq failed to build (build variant: nodhcpv6).
make[3] -C package/network/services/dnsmasq compile
ERROR: package/network/utils/iptables failed to build.
make[3] -C package/network/utils/iproute2 compile
make[3] -C package/network/ipv6/map compile
make[3] -C package/network/config/firewall compile
ERROR: package/network/services/dnsmasq failed to build (build variant: dhcpv6).
make[3] -C package/network/services/dnsmasq compile
ERROR: package/network/utils/iproute2 failed to build (build variant: tiny).
make[3] -C package/network/utils/iproute2 compile
ERROR: package/network/ipv6/map failed to build.
ERROR: package/boot/uboot-kirkwood failed to build (build variant: iconnect).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/utils/iproute2 failed to build (build variant: full).
ERROR: package/network/services/dnsmasq failed to build (build variant: full).
make[3] -C package/network/utils/iproute2 compile
ERROR: package/network/config/firewall failed to build.
ERROR: package/network/utils/iproute2 failed to build (build variant: tc).
ERROR: package/network/utils/ipset failed to build.
make[3] -C package/network/config/qos-scripts compile
make[3] -C package/network/services/wireguard compile
make[3] -C package/network/ipv6/464xlat compile
ERROR: package/network/ipv6/464xlat failed to build.
ERROR: package/network/services/wireguard failed to build.
ERROR: package/network/services/hostapd failed to build (build variant: full-wolfssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/devel/gdb failed to build.
ERROR: package/network/utils/iftop failed to build.
ERROR: package/network/services/hostapd failed to build (build variant: wpad-full-internal).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-mesh-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/openvpn failed to build (build variant: openssl).
make[3] -C package/network/services/openvpn compile
ERROR: package/network/utils/iperf3 failed to build (build variant: ssl).
ERROR: package/boot/uboot-kirkwood failed to build (build variant: iconnect_second_stage).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-mesh-wolfssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-basic).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-mini).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-full-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/boot/uboot-kirkwood failed to build (build variant: nsa310).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/lldpd failed to build.
ERROR: package/utils/util-linux failed to build.
make[3] -C package/utils/f2fs-tools compile
make[3] -C package/utils/mtd-utils compile
make[3] -C package/utils/xfsprogs compile
make[3] -C package/utils/e2fsprogs compile
ERROR: package/network/services/hostapd failed to build (build variant: wpad-full-wolfssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/utils/xfsprogs failed to build.
ERROR: package/utils/e2fsprogs failed to build.
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-internal).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-mesh-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/boot/uboot-kirkwood failed to build (build variant: nsa325).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-mesh-wolfssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/openvpn failed to build (build variant: mbedtls).
make[3] -C package/network/services/openvpn compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-basic).
make[3] -C package/network/services/hostapd compile
ERROR: package/utils/f2fs-tools failed to build.
ERROR: package/utils/mtd-utils failed to build.
make[3] -C package/system/fstools compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-mini).
make[3] -C package/network/services/hostapd compile
ERROR: package/system/fstools failed to build.
make[3] -C package/boot/uboot-envtools compile
make[3] -C package/base-files compile
make[3] -C package/network/services/samba36 compile
ERROR: package/boot/uboot-kirkwood failed to build (build variant: pogo_e02).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-p2p-internal).
make[3] -C package/network/services/hostapd compile
ERROR: package/boot/uboot-envtools failed to build.
ERROR: package/network/services/samba36 failed to build.
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-wolfssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-internal).
make[3] -C package/network/services/hostapd compile
ERROR: package/boot/uboot-kirkwood failed to build (build variant: pogo_e02_second_stage).
make[3] -C package/boot/uboot-kirkwood compile
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-openssl).
make[3] -C package/network/services/hostapd compile
ERROR: package/network/services/openvpn failed to build (build variant: nossl).
ERROR: package/network/services/hostapd failed to build (build variant: supplicant-full-wolfssl).
make[3] -C package/kernel/mac80211 compile
ERROR: package/kernel/mac80211 failed to build.
make[3] -C package/kernel/mt76 compile
make[3] -C package/kernel/ath10k-ct compile
make[3] -C package/kernel/rtl8812au-ct compile
ERROR: package/kernel/ath10k-ct failed to build.
make[3] -C package/firmware/ath10k-firmware compile
ERROR: package/kernel/rtl8812au-ct failed to build.
ERROR: package/kernel/mt76 failed to build.
ERROR: package/boot/uboot-kirkwood failed to build (build variant: pogoplugv4).
make[3] -C package/libs/gettext-full compile
ERROR: package/libs/gettext-full failed to build.
make[2] package/install
make -r world: build failed. Please re-run make with -j1 V=s or V=sc for a higher verbosity level to see what's going on
make: *** [/srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW/build/source/include/toplevel.mk:227: world] Error 1
Tue Nov 5 15:50:33 UTC 2019 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-yG8d0Jnf, which will now be removed.
====================================================================================
Tue Nov 5 15:50:35 UTC 2019 - running /srv/jenkins/bin/reproducible_openwrt.sh (for job reproducible_openwrt) on osuosl-build171-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_openwrt.sh,
has been called using "node node_save_logs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue Nov 5 15:50:35 UTC 2019 - start running "/srv/jenkins/bin/reproducible_openwrt.sh" (md5sum d10004c52d789c76595f91f6fbb6ec43) as "/tmp/jenkins-script-Z3itQyKY" on osuosl-build171-amd64.
/tmp/jenkins-script-Z3itQyKY got called with 'node node_save_logs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW'
Tue Nov 5 15:50:35 UTC 2019 - saving $tmpdir/build/source in /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW/build_logs.tar.xz
/var/lib/jenkins
Tue Nov 5 15:50:36 UTC 2019 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-Z3itQyKY, which will now be removed.
====================================================================================
Mon Dec 7 22:13:37 UTC 2020 - running /srv/jenkins/bin/reproducible_openwrt.sh (for job reproducible_openwrt) on osuosl-build172-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_openwrt.sh,
has been called using "node node_save_logs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Mon Dec 7 22:13:37 UTC 2020 - start running "/srv/jenkins/bin/reproducible_openwrt.sh" (md5sum d10004c52d789c76595f91f6fbb6ec43) as "/tmp/jenkins-script-tX4cOw81" on osuosl-build172-amd64.
/tmp/jenkins-script-tX4cOw81 got called with 'node node_save_logs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW'
Mon Dec 7 22:13:37 UTC 2020 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-tX4cOw81, which will now be removed.
/tmp/jenkins-script-tX4cOw81: line 100: cd: /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW/build/source: No such file or directory
receiving incremental file list
rsync: change_dir "/srv/reproducible-results/rbuild-openwrt-results-IBlp4EC8" failed: No such file or directory (2)
sent 8 bytes received 129 bytes 39.14 bytes/sec
total size is 0 speedup is 0.00
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1677) [Receiver=3.1.3]
rsync: [Receiver] write error: Broken pipe (32)
receiving incremental file list
rsync: change_dir "/srv/reproducible-results/rbuild-openwrt-results-IBlp4EC8" failed: No such file or directory (2)
sent 8 bytes received 129 bytes 54.80 bytes/sec
total size is 0 speedup is 0.00
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1677) [Receiver=3.1.3]
rsync: [Receiver] write error: Broken pipe (32)
====================================================================================
Tue Nov 5 15:50:47 UTC 2019 - running /srv/jenkins/bin/reproducible_openwrt.sh (for job reproducible_openwrt) on osuosl-build171-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_openwrt.sh,
has been called using "node node_cleanup_tmpdirs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue Nov 5 15:50:47 UTC 2019 - start running "/srv/jenkins/bin/reproducible_openwrt.sh" (md5sum d10004c52d789c76595f91f6fbb6ec43) as "/tmp/jenkins-script-aGsJHW7i" on osuosl-build171-amd64.
/tmp/jenkins-script-aGsJHW7i got called with 'node node_cleanup_tmpdirs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW'
Tue Nov 5 15:50:47 UTC 2019 - deleting $TMPBUILDDIR /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW
Tue Nov 5 15:50:50 UTC 2019 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-aGsJHW7i, which will now be removed.
====================================================================================
Mon Dec 7 22:13:51 UTC 2020 - running /srv/jenkins/bin/reproducible_openwrt.sh (for job reproducible_openwrt) on osuosl-build172-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_openwrt.sh,
has been called using "node node_cleanup_tmpdirs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Mon Dec 7 22:13:51 UTC 2020 - start running "/srv/jenkins/bin/reproducible_openwrt.sh" (md5sum d10004c52d789c76595f91f6fbb6ec43) as "/tmp/jenkins-script-PqktInRl" on osuosl-build172-amd64.
/tmp/jenkins-script-PqktInRl got called with 'node node_cleanup_tmpdirs /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW'
Mon Dec 7 22:13:51 UTC 2020 - deleting $TMPBUILDDIR /srv/workspace/chroots/rbuild-openwrt-build-2019-11-05-wZlP4jTW
Mon Dec 7 22:13:51 UTC 2020 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-PqktInRl, which will now be removed.
Tue 5 Nov 15:50:53 UTC 2019 - /srv/jenkins/bin/reproducible_openwrt.sh stopped running as /tmp/jenkins-script-gMJHSNBM, which will now be removed.
Build step 'Execute shell' marked build as failure
Archiving artifacts
From jenkins at jenkins.debian.net Tue Nov 5 15:54:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 15:54:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_bullseye_install_parl-desktop-eu/39
Message-ID: <104398117.78.1572969244549.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-eu/39//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-eu/39/ for more information.
From jenkins at jenkins.debian.net Tue Nov 5 16:06:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:06:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3417
In-Reply-To: <27904842.54.1572962765680.JavaMail.jenkins@jenkins>
References: <27904842.54.1572962765680.JavaMail.jenkins@jenkins>
Message-ID: <723464786.79.1572970007253.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 16:09:44 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:09:44 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_wbq0 #15462
Message-ID: <374769376.81.1572970184666.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 4.59 KB...]
Reading package lists...
Tue Nov 5 14:06:53 UTC 2019 - updating pbuilder for buster/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:06:54 UTC 2019
I: pbuilder-time-stamp: 1572962814
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.11-7).
build-essential is already the newest version (12.6).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/3097 and its subdirectories
Tue Nov 5 14:08:37 UTC 2019 - updating the bullseye/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Tue Nov 5 14:08:45 UTC 2019 - updating pbuilder for bullseye/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:08:46 UTC 2019
I: pbuilder-time-stamp: 1572962926
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/3363 and its subdirectories
Tue Nov 5 14:10:29 UTC 2019 - updating the unstable/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
Tue Nov 5 14:10:38 UTC 2019 - updating pbuilder for unstable/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:10:39 UTC 2019
I: pbuilder-time-stamp: 1572963039
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Hit:2 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/3783 and its subdirectories
Tue Nov 5 14:12:39 UTC 2019 - updating the experimental/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Reading package lists...
Tue Nov 5 14:12:41 UTC 2019 - updating pbuilder for experimental/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:12:41 UTC 2019
I: pbuilder-time-stamp: 1572963161
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Hit:2 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Hit:3 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/4518 and its subdirectories
Tue Nov 5 14:14:51 UTC 2019 - Removing schroot sessions older than 3 days.
Tue Nov 5 14:14:51 UTC 2019 - Removing schroots older than 3 days.
Tue Nov 5 14:14:51 UTC 2019 - Detecting schroots older than 1 month
Tue Nov 5 14:14:51 UTC 2019 - Looking for processes which should not be there.
Tue Nov 5 14:14:52 UTC 2019 - Checking for artifacts older than a day.
Tue Nov 5 14:14:52 UTC 2019 - Checking for files with bad permissions.
Tue Nov 5 14:14:52 UTC 2019 - Everything seems to be fine.
Tue Nov 5 14:14:52 UTC 2019 - the end.
Tue 05 Nov 2019 02:14:53 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-dOAhz0cr, which will now be removed.
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'wbq0-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins1684381529614812797.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on wbq0-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_maintenance_armhf_wbq0 #15462
From jenkins at jenkins.debian.net Tue Nov 5 16:09:41 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:09:41 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: reproducible_fdroid_test
#270
Message-ID: <997363488.80.1572970182076.JavaMail.jenkins@jenkins>
See
Changes:
[gitlab] remove redundant google analytics match
[gitlab] Update scanner.TestCase to match new regex regime
------------------------------------------
[...truncated 16.90 MB...]
WARNING: META-INF/proguard/androidx-annotations.pro not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/proguard/okhttp3.pro not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/org.acra.collector.Collector not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/org.acra.config.ConfigurationBuilderFactory not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/org.acra.interaction.ReportInteraction not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/org.acra.sender.ReportSenderFactory not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing es.esy.CosyDVR_30.apk
DEBUG: Getting signature of es.esy.CosyDVR_30.apk
DEBUG: repo/es.esy.CosyDVR_30.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
DEBUG: repo/icons-320/es.esy.CosyDVR.30.png was too large at (144, 144) - new size is (96, 96)
DEBUG: repo/icons-240/es.esy.CosyDVR.30.png was too large at (96, 96) - new size is (72, 72)
DEBUG: repo/icons-120/es.esy.CosyDVR.30.png was too large at (72, 72) - new size is (36, 36)
DEBUG: Processing es.usc.citius.servando.calendula_42.apk
java.io.IOException: Unexpected EOF
at hudson.remoting.ChunkedInputStream.readUntilBreak(ChunkedInputStream.java:99)
at hudson.remoting.ChunkedCommandTransport.readBlock(ChunkedCommandTransport.java:39)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:35)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build168-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
DEBUG: Getting signature of es.usc.citius.servando.calendula_42.apk
DEBUG: repo/es.usc.citius.servando.calendula_42.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/CHANGES not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/Calendula_productRelease.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/README not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.core_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_animated-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_appcompat-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_cardview-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_design.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_gridlayout-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_palette-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_preference-v14.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_preference-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_recyclerview-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-media-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-v4.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_transition.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common-coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-jdk7.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib_coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
Build step 'Execute shell' marked build as failure
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing et.nWifiManager_16.apk
DEBUG: Getting signature of et.nWifiManager_16.apk
DEBUG: repo/et.nWifiManager_16.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
DEBUG: Processing eu.depau.etchdroid_8.apk
DEBUG: Getting signature of eu.depau.etchdroid_8.apk
DEBUG: repo/eu.depau.etchdroid_8.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/android.support.design_material.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.arch.core_core-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.browser_browser.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cardview_cardview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.coordinatorlayout_coordinatorlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.core_core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cursoradapter_cursoradapter.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.customview_customview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.documentfile_documentfile.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.drawerlayout_drawerlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.fragment_fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.gridlayout_gridlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.interpolator_interpolator.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.loader_loader.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.print_print.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.recyclerview_recyclerview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.slidingpanelayout_slidingpanelayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.transition_transition.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable-animated.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.versionedparcelable_versionedparcelable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.viewpager_viewpager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/app_release.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.google.android.material_material.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-jdk7.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/proguard/androidx-annotations.pro not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing eu.devunit.fb_client_4.apk
DEBUG: Getting signature of eu.devunit.fb_client_4.apk
DEBUG: repo/eu.devunit.fb_client_4.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing eu.domob.shopt_10000.apk
DEBUG: Getting signature of eu.domob.shopt_10000.apk
DEBUG: repo/eu.domob.shopt_10000.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing eu.droogers.smsmatrix_12.apk
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_fdroid_test #270
DEBUG: Getting signature of eu.droogers.smsmatrix_12.apk
DEBUG: repo/eu.droogers.smsmatrix_12.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/android.arch.core_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_animated-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_appcompat-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common-coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-jdk7.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib_coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/matrix-sdk_release.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/realm-kotlin-extensions_baseRelease.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing eu.e43.impeller_9052.apk
DEBUG: Getting signature of eu.e43.impeller_9052.apk
DEBUG: repo/eu.e43.impeller_9052.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/jdom-info.xml not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/README not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/org.apache.james.mime4j.dom.MessageServiceFactory not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Processing eu.faircode.email_470.apk
DEBUG: Getting signature of eu.faircode.email_470.apk
DEBUG: repo/eu.faircode.email_470.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/CHANGES not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/LICENSE.txt not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/README.md not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.support.design_material.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.arch.core_core-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.browser_browser.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cardview_cardview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.coordinatorlayout_coordinatorlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.core_core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cursoradapter_cursoradapter.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.customview_customview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.documentfile_documentfile.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.drawerlayout_drawerlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.exifinterface_exifinterface.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.fragment_fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.interpolator_interpolator.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-extensions.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-process.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-service.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.loader_loader.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.paging_paging-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.preference_preference.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.print_print.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.recyclerview_recyclerview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.room_room-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.slidingpanelayout_slidingpanelayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.sqlite_sqlite-framework.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.sqlite_sqlite.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.transition_transition.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable-animated.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.versionedparcelable_versionedparcelable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.viewpager_viewpager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.work_work-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.google.android.material_material.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/gfprobe-provider.xml not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/hk2-locator/default not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/javamail.charset.map not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/javamail.default.address.map not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/javamail.default.providers not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/mailcap not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/mailcap.default not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/mimetypes.default not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/java.nio.charset.spi.CharsetProvider not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/javax.mail.Provider not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing eu.faircode.email_474.apk
DEBUG: Getting signature of eu.faircode.email_474.apk
From jenkins at jenkins.debian.net Tue Nov 5 16:10:16 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:10:16 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_armhf_opi2c #814
Message-ID: <1740620151.83.1572970216748.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on opi2c-armhf-rb.debian.net (armhf opi2c) in workspace /srv/jenkins/pseudo-hosts/opi2c-armhf-rb/workspace/reproducible_setup_pbuilder_stretch_armhf_opi2c
[reproducible_setup_pbuilder_stretch_armhf_opi2c] $ /bin/sh -xe /tmp/jenkins6596701314468538292.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'opi2c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins6596701314468538292.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on opi2c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_setup_pbuilder_stretch_armhf_opi2c #814
From jenkins at jenkins.debian.net Tue Nov 5 16:10:16 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:10:16 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_opi2c #13270
Message-ID: <773757554.82.1572970216748.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on opi2c-armhf-rb.debian.net (armhf opi2c) in workspace /srv/jenkins/pseudo-hosts/opi2c-armhf-rb/workspace/reproducible_maintenance_armhf_opi2c
[reproducible_maintenance_armhf_opi2c] $ /bin/sh -xe /tmp/jenkins4278811674353719946.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Tue 5 Nov 16:05:01 UTC 2019 - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_armhf_opi2c) on opi2c now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Tue 5 Nov 16:05:01 UTC 2019 - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-tH0lEi89" on opi2c.
Tue Nov 5 16:05:01 UTC 2019 - Looking for too large files in /var/log/
Tue Nov 5 16:05:01 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Old temp directories found in /srv/reproducible-results/rbuild-debian
removed '/srv/reproducible-results/rbuild-debian/tmp.Nm2m8iKZUg/tmp.X3amsRavGu'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Nm2m8iKZUg'
These old directories have been deleted.
Tue Nov 5 16:05:02 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Tue Nov 5 16:05:02 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Tue Nov 5 16:05:02 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Tue Nov 5 16:05:02 UTC 2019 - Deleting chroots build directories, older than 7 days.
Tue Nov 5 16:05:02 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 271 100 271 0 0 5765 0 --:--:-- --:--:-- --:--:-- 5891
Tue Nov 5 16:05:02 UTC 2019 - updating the chdists, schroots and pbuilder now...
Tue Nov 5 16:05:02 UTC 2019 - updating the stretch/armhf chdist now.
Ign:1 http://cdn-fastly.deb.debian.org/debian stretch InRelease
Hit:2 http://cdn-fastly.deb.debian.org/debian stretch Release
Reading package lists...
Tue Nov 5 16:05:13 UTC 2019 - updating pbuilder for stretch/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 16:05:14 UTC 2019
I: pbuilder-time-stamp: 1572969914
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/stretch-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Ign:1 http://cdn-fastly.deb.debian.org/debian stretch InRelease
Hit:2 http://cdn-fastly.deb.debian.org/debian stretch Release
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.7-1).
build-essential is already the newest version (12.3).
dpkg-dev is already the newest version (1.18.25).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/stretch-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/30088 and its subdirectories
Tue Nov 5 16:07:19 UTC 2019 - updating the buster/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Tue Nov 5 16:07:31 UTC 2019 - updating pbuilder for buster/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 16:07:32 UTC 2019
I: pbuilder-time-stamp: 1572970052
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.11-7).
build-essential is already the newest version (12.6).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/30597 and its subdirectories
Tue Nov 5 16:10:06 UTC 2019 - updating the bullseye/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease [109 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian bullseye/main Sources.diff/Index [27.9 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages.diff/Index [27.9 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian bullseye/main Translation-en.diff/Index [27.9 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian bullseye/main Sources 2019-11-05-1414.24.pdiff [65 B]
Get:6 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-05-1414.24.pdiff [910 B]
Get:5 http://cdn-fastly.deb.debian.org/debian bullseye/main Sources 2019-11-05-1414.24.pdiff [65 B]
Get:6 http://cdn-fastly.deb.debian.org/debian bullseye/main armhf Packages 2019-11-05-1414.24.pdiff [910 B]
Get:7 http://cdn-fastly.deb.debian.org/debian bullseye/main Translation-en 2019-11-05-1414.24.pdiff [71 B]
Get:7 http://cdn-fastly.deb.debian.org/debian bullseye/main Translation-en 2019-11-05-1414.24.pdiff [71 B]
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'opi2c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins4278811674353719946.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on opi2c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
FATAL: Channel "unknown": Remote call on opi2c-armhf-rb.debian.net failed. The channel is closing down or has closed down
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on opi2c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.Launcher$RemoteLauncher.kill(Launcher.java:1086)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:510)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
From jenkins at jenkins.debian.net Tue Nov 5 16:10:54 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:10:54 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_i386_profitbricks12 #11679
In-Reply-To: <1277452431.58.1572962895784.JavaMail.jenkins@jenkins>
References: <1277452431.58.1572962895784.JavaMail.jenkins@jenkins>
Message-ID: <1192385735.84.1572970254185.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build12-i386.debian.net (profitbricks12 i386) in workspace
[reproducible_maintenance_i386_profitbricks12] $ /bin/sh -xe /tmp/jenkins5021332760929507202.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build12-i386.debian.net port 22: Connection timed out
Tue 5 Nov 16:09:41 UTC 2019 - profitbricks-build12-i386.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 16:12:49 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:12:49 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_cbxi4pro0 #15613
Message-ID: <931767762.85.1572970369956.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 4.95 KB...]
Tue Nov 5 14:06:43 UTC 2019 - updating the buster/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Tue Nov 5 14:06:52 UTC 2019 - updating pbuilder for buster/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:06:52 UTC 2019
I: pbuilder-time-stamp: 1572962812
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.11-7).
build-essential is already the newest version (12.6).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/5753 and its subdirectories
Tue Nov 5 14:08:39 UTC 2019 - updating the bullseye/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Tue Nov 5 14:08:47 UTC 2019 - updating pbuilder for bullseye/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:08:48 UTC 2019
I: pbuilder-time-stamp: 1572962928
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/6022 and its subdirectories
Tue Nov 5 14:10:33 UTC 2019 - updating the unstable/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
Tue Nov 5 14:10:41 UTC 2019 - updating pbuilder for unstable/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:10:42 UTC 2019
I: pbuilder-time-stamp: 1572963042
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Hit:2 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/6414 and its subdirectories
Tue Nov 5 14:12:35 UTC 2019 - updating the experimental/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Reading package lists...
Tue Nov 5 14:12:37 UTC 2019 - updating pbuilder for experimental/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 14:12:38 UTC 2019
I: pbuilder-time-stamp: 1572963158
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Hit:3 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Hit:2 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/6935 and its subdirectories
Tue Nov 5 14:15:00 UTC 2019 - Removing schroot sessions older than 3 days.
Tue Nov 5 14:15:00 UTC 2019 - Removing schroots older than 3 days.
Tue Nov 5 14:15:00 UTC 2019 - Detecting schroots older than 1 month
Tue Nov 5 14:15:00 UTC 2019 - Looking for processes which should not be there.
Tue Nov 5 14:15:01 UTC 2019 - Checking for artifacts older than a day.
Tue Nov 5 14:15:01 UTC 2019 - Checking for files with bad permissions.
Tue Nov 5 14:15:01 UTC 2019 - the end.
Tue 05 Nov 2019 02:15:01 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-zISnUJwP, which will now be removed.
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'cbxi4pro0-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins3290825539862001466.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on cbxi4pro0-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_maintenance_armhf_cbxi4pro0 #15613
From jenkins at jenkins.debian.net Tue Nov 5 16:13:41 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:13:41 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_reverse_runner #291
In-Reply-To: <1353318724.75.1572968484238.JavaMail.jenkins@jenkins>
References: <1353318724.75.1572968484238.JavaMail.jenkins@jenkins>
Message-ID: <556160597.86.1572970421549.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 17.89 KB...]
Tue Nov 5 15:44:39 UTC 2019 - not updating data about yosys-doc_0.8-1_all.deb
Tue Nov 5 15:44:39 UTC 2019 - not updating data about yosys-dev_0.8-1_amd64.deb
Tue Nov 5 15:44:40 UTC 2019 - not updating data about yosys_0.8-1_amd64.deb
Tue Nov 5 15:44:40 UTC 2019 - not updating data about yoshimi-doc_1.5.10.1-1_all.deb
Tue Nov 5 15:44:41 UTC 2019 - not updating data about yoshimi-data_1.5.10.1-1_all.deb
Tue Nov 5 15:44:42 UTC 2019 - not updating data about yoshimi_1.5.10.1-1_amd64.deb
Tue Nov 5 15:44:42 UTC 2019 - not updating data about yorick-z_1.2.0+cvs20080115-5+b2_amd64.deb
Tue Nov 5 15:44:43 UTC 2019 - not updating data about yorick-yutils_1.5.2-1_all.deb
Tue Nov 5 15:44:43 UTC 2019 - not updating data about yorick-ynfft_1.0.3-1_amd64.deb
Tue Nov 5 15:44:44 UTC 2019 - not updating data about yorick-ygsl_1.2.1-1+b1_amd64.deb
Tue Nov 5 15:44:45 UTC 2019 - not updating data about yorick-yeti-tiff_6.4.0-1_amd64.deb
Tue Nov 5 15:44:45 UTC 2019 - not updating data about yorick-yeti-regex_6.4.0-1_amd64.deb
Tue Nov 5 15:44:46 UTC 2019 - not updating data about yorick-yeti-fftw_6.4.0-1_amd64.deb
Tue Nov 5 15:44:46 UTC 2019 - not updating data about yorick-yeti_6.4.0-1_amd64.deb
Tue Nov 5 15:44:47 UTC 2019 - not updating data about yorick-yao_5.4.0-1_amd64.deb
Tue Nov 5 15:44:47 UTC 2019 - not updating data about yorick-svipc_0.16-3_amd64.deb
Tue Nov 5 15:44:48 UTC 2019 - not updating data about yorick-spydr_0.8.2-3_all.deb
Tue Nov 5 15:44:49 UTC 2019 - not updating data about yorick-soy_1.4.0-3_amd64.deb
Tue Nov 5 15:44:49 UTC 2019 - not updating data about yorick-optimpack_1.3.2+dfsg+1.4.0-1_amd64.deb
Tue Nov 5 15:44:50 UTC 2019 - not updating data about yorick-mpy-openmpi_2.2.04+dfsg1-10_amd64.deb
Tue Nov 5 15:44:50 UTC 2019 - not updating data about yorick-mpy-mpich2_2.2.04+dfsg1-10_amd64.deb
Tue Nov 5 15:44:51 UTC 2019 - not updating data about yorick-mpy-common_2.2.04+dfsg1-10_all.deb
Tue Nov 5 15:44:51 UTC 2019 - not updating data about yorick-mpeg_0.1-3_amd64.deb
Tue Nov 5 15:44:52 UTC 2019 - not updating data about yorick-ml4_0.6.0-3_amd64.deb
Tue Nov 5 15:44:53 UTC 2019 - not updating data about yorick-mira_1.1.0+git20170124.3bd1c3~dfsg1-2_all.deb
Tue Nov 5 15:44:53 UTC 2019 - not updating data about yorick-imutil_0.5.7-3_amd64.deb
Tue Nov 5 15:44:54 UTC 2019 - not updating data about yorick-hdf5_0.8.0-8+b1_amd64.deb
Tue Nov 5 15:44:54 UTC 2019 - not updating data about yorick-gyoto_1.3.1-1_amd64.deb
Tue Nov 5 15:44:55 UTC 2019 - not updating data about yorick-gy_0.0.5-1_amd64.deb
Tue Nov 5 15:44:55 UTC 2019 - not updating data about yorick-gl_1.1+cvs20070922+dfsg-6.1_amd64.deb
Tue Nov 5 15:44:56 UTC 2019 - not updating data about yorick-full_2.2.04+dfsg1+full_amd64.deb
Tue Nov 5 15:44:57 UTC 2019 - not updating data about yorick-doc_2.2.04+dfsg1-10_all.deb
Tue Nov 5 15:44:57 UTC 2019 - not updating data about yorick-dev_2.2.04+dfsg1-10_amd64.deb
Tue Nov 5 15:44:58 UTC 2019 - not updating data about yorick-data_2.2.04+dfsg1-10_all.deb
Tue Nov 5 15:44:58 UTC 2019 - not updating data about yorick-curses_0.1-6+b2_amd64.deb
Tue Nov 5 15:44:59 UTC 2019 - not updating data about yorick-cubeview_2.2-2_all.deb
Tue Nov 5 15:45:00 UTC 2019 - not updating data about yorick-av_0.0.5-1+b1_amd64.deb
Tue Nov 5 15:45:00 UTC 2019 - not updating data about yorick_2.2.04+dfsg1-10_amd64.deb
Tue Nov 5 15:45:01 UTC 2019 - not updating data about yokadi_1.1.1-2_all.deb
Tue Nov 5 15:45:01 UTC 2019 - not updating data about yodl-doc_4.02.00-3_all.deb
Tue Nov 5 15:45:02 UTC 2019 - not updating data about yodl_4.02.00-3_amd64.deb
Tue Nov 5 15:45:02 UTC 2019 - not updating data about ykush-control_1.1.0+ds-1_amd64.deb
Tue Nov 5 15:45:03 UTC 2019 - not updating data about yiyantang_0.7.0-5+b1_amd64.deb
Tue Nov 5 15:45:04 UTC 2019 - not updating data about yi_0.18.0-1_amd64.deb
Tue Nov 5 15:45:04 UTC 2019 - not updating data about yhsm-yubikey-ksm_1.2.1-1_all.deb
Tue Nov 5 15:45:05 UTC 2019 - not updating data about yhsm-validation-server_1.2.1-1_all.deb
Tue Nov 5 15:45:05 UTC 2019 - not updating data about yhsm-tools_1.2.1-1_all.deb
Tue Nov 5 15:45:06 UTC 2019 - not updating data about yhsm-daemon_1.2.1-1_all.deb
Tue Nov 5 15:45:06 UTC 2019 - not updating data about yesod_1.6.0.3-4_amd64.deb
Tue Nov 5 15:45:07 UTC 2019 - not updating data about yersinia_0.8.2-2+b1_amd64.deb
Tue Nov 5 15:45:08 UTC 2019 - not updating data about yelp-xsl_3.31.90-1_all.deb
Tue Nov 5 15:45:08 UTC 2019 - not updating data about yelp-tools_3.31.90-1_all.deb
Tue Nov 5 15:45:09 UTC 2019 - not updating data about yelp_3.31.90-1_amd64.deb
Tue Nov 5 15:45:09 UTC 2019 - not updating data about yeahconsole_0.3.4-5_amd64.deb
Tue Nov 5 15:45:10 UTC 2019 - not updating data about ycmd_0+20181101+git600f54d-0.1+b2_amd64.deb
Tue Nov 5 15:45:10 UTC 2019 - not updating data about yc-el_5.0.0-8_amd64.deb
Tue Nov 5 15:45:11 UTC 2019 - not updating data about yazc_0.4.1-1_amd64.deb
Tue Nov 5 15:45:12 UTC 2019 - not updating data about yaz-illclient_5.27.1-2_amd64.deb
Tue Nov 5 15:45:12 UTC 2019 - not updating data about yaz-icu_5.27.1-2_amd64.deb
Tue Nov 5 15:45:13 UTC 2019 - not updating data about yaz-doc_5.27.1-2_all.deb
Tue Nov 5 15:45:13 UTC 2019 - downloading .json for yaz_5.27.1-2_amd64.deb () from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/
Tue Nov 5 15:45:14 UTC 2019 - UNREPRODUCIBLE: yaz_5.27.1-2_amd64.deb (e8771ed311a5bbe1edf8f5ddaf58c08561a806a1) only on ftp.debian.org.
Tue Nov 5 15:45:15 UTC 2019 - downloading .json for yaws-yapp_2.0.6+dfsg-1_all.deb (e8771ed311a5bbe1edf8f5ddaf58c08561a806a1) from buildinfo.debian.net
Tue Nov 5 15:45:45 UTC 2019 - REPRODUCIBLE: yaws-yapp_2.0.6+dfsg-1_all.deb (3ccf05c12af7a20c4bb6ab439b064b156148eef4) - reproduced 7 times.
Tue Nov 5 15:45:46 UTC 2019 - downloading .json for yaws-wiki_2.0.6+dfsg-1_all.deb (3ccf05c12af7a20c4bb6ab439b064b156148eef4) from buildinfo.debian.net
Tue Nov 5 15:46:16 UTC 2019 - REPRODUCIBLE: yaws-wiki_2.0.6+dfsg-1_all.deb (70f1be92379f280f074349cc9d622ea14c45b92f) - reproduced 213 times.
Tue Nov 5 15:46:17 UTC 2019 - downloading .json for yaws-mail_2.0.6+dfsg-1_all.deb (70f1be92379f280f074349cc9d622ea14c45b92f) from buildinfo.debian.net
Tue Nov 5 15:46:46 UTC 2019 - REPRODUCIBLE: yaws-mail_2.0.6+dfsg-1_all.deb (38872cc0b68460ffc9a55298c7ad294e4fec494a) - reproduced 9 times.
Tue Nov 5 15:46:47 UTC 2019 - downloading .json for yaws-doc_2.0.6+dfsg-1_all.deb (38872cc0b68460ffc9a55298c7ad294e4fec494a) from buildinfo.debian.net
Tue Nov 5 15:47:16 UTC 2019 - REPRODUCIBLE: yaws-doc_2.0.6+dfsg-1_all.deb (ffa6ea555a50d52171fc7571f413e4227474f195) - reproduced 9 times.
Tue Nov 5 15:47:17 UTC 2019 - downloading .json for yaws-chat_2.0.6+dfsg-1_all.deb (ffa6ea555a50d52171fc7571f413e4227474f195) from buildinfo.debian.net
Tue Nov 5 15:47:46 UTC 2019 - UNREPRODUCIBLE: yaws-chat_2.0.6+dfsg-1_all.deb (fc13b4643a9733debb504b5c2bffd9fe7e24a08c) only on ftp.debian.org.
Tue Nov 5 15:47:47 UTC 2019 - downloading .json for yaws_2.0.6+dfsg-1_all.deb (fc13b4643a9733debb504b5c2bffd9fe7e24a08c) from buildinfo.debian.net
Tue Nov 5 15:48:16 UTC 2019 - REPRODUCIBLE: yaws_2.0.6+dfsg-1_all.deb (e3956f3ea54b6843cf2a54fbfb41ec5e5c95bc83) - reproduced 9 times.
Tue Nov 5 15:48:17 UTC 2019 - downloading .json for yavta_0.0+git20190114.e21525b-1_amd64.deb (e3956f3ea54b6843cf2a54fbfb41ec5e5c95bc83) from buildinfo.debian.net
Tue Nov 5 15:48:46 UTC 2019 - REPRODUCIBLE: yavta_0.0+git20190114.e21525b-1_amd64.deb (3ba7fe06b9e8cc69d140eaa825e9e188c7dd4f47) - reproduced 17 times.
Tue Nov 5 15:48:47 UTC 2019 - downloading .json for yatm_0.9-2_amd64.deb (3ba7fe06b9e8cc69d140eaa825e9e188c7dd4f47) from buildinfo.debian.net
Tue Nov 5 15:49:16 UTC 2019 - REPRODUCIBLE: yatm_0.9-2_amd64.deb (58879f453247f2bed05977fc0fd603ccdd0c3b11) - reproduced 4 times.
Tue Nov 5 15:49:17 UTC 2019 - downloading .json for yatex_1.81-2_all.deb (58879f453247f2bed05977fc0fd603ccdd0c3b11) from buildinfo.debian.net
Tue Nov 5 15:49:46 UTC 2019 - UNREPRODUCIBLE: yatex_1.81-2_all.deb (bce0a171b86bce4f382b36082cf76288b253c1c9) only on ftp.debian.org.
Tue Nov 5 15:49:47 UTC 2019 - downloading .json for yasw_0.6-2_amd64.deb (bce0a171b86bce4f382b36082cf76288b253c1c9) from buildinfo.debian.net
Tue Nov 5 15:50:17 UTC 2019 - UNREPRODUCIBLE: yasw_0.6-2_amd64.deb (a7e3a50494e96fe55d381e0eb2c299d2827901f1) only on ftp.debian.org.
Tue Nov 5 15:50:18 UTC 2019 - downloading .json for yasr_0.6.9-8_amd64.deb (a7e3a50494e96fe55d381e0eb2c299d2827901f1) from buildinfo.debian.net
Tue Nov 5 15:50:48 UTC 2019 - UNREPRODUCIBLE: yasr_0.6.9-8_amd64.deb (6cd2cfdef9e81ffb3ddb8db8717651e79b6fd78d) only on ftp.debian.org.
Tue Nov 5 15:50:48 UTC 2019 - downloading .json for yasnippet-snippets_0.9-1_all.deb (6cd2cfdef9e81ffb3ddb8db8717651e79b6fd78d) from buildinfo.debian.net
Tue Nov 5 15:51:18 UTC 2019 - UNREPRODUCIBLE: yasnippet-snippets_0.9-1_all.deb (64b272ac7377060427f5cf7c5d52972504cd4a66) only on ftp.debian.org.
Tue Nov 5 15:51:19 UTC 2019 - downloading .json for yasnippet_0.13.0-2_all.deb (64b272ac7377060427f5cf7c5d52972504cd4a66) from buildinfo.debian.net
Tue Nov 5 15:51:48 UTC 2019 - REPRODUCIBLE: yasnippet_0.13.0-2_all.deb (d4fac177e4baafd808aa159e6157fc8057bf6083) - reproduced 80 times.
Tue Nov 5 15:51:49 UTC 2019 - downloading .json for yasm_1.3.0-2+b1_amd64.deb (d4fac177e4baafd808aa159e6157fc8057bf6083) from buildinfo.debian.net
Tue Nov 5 15:52:18 UTC 2019 - REPRODUCIBLE: yasm_1.3.0-2+b1_amd64.deb (7673d064636bddae4d572cbd25b38c116990bbd0) - reproduced 44 times.
Tue Nov 5 15:52:19 UTC 2019 - downloading .json for yaskkserv_1.1.0-2_amd64.deb (7673d064636bddae4d572cbd25b38c116990bbd0) from buildinfo.debian.net
Tue Nov 5 15:52:48 UTC 2019 - UNREPRODUCIBLE: yaskkserv_1.1.0-2_amd64.deb (821437f68cd611ec5f57b4d84600b8c05fa3aa73) only on ftp.debian.org.
Tue Nov 5 15:52:49 UTC 2019 - downloading .json for yash_2.48-1_amd64.deb (821437f68cd611ec5f57b4d84600b8c05fa3aa73) from buildinfo.debian.net
Tue Nov 5 15:53:19 UTC 2019 - UNREPRODUCIBLE: yash_2.48-1_amd64.deb (beeb8d0e2819e48561b74022f36841c01f8514a4) only on ftp.debian.org.
Tue Nov 5 15:53:19 UTC 2019 - downloading .json for yasat_848-1_all.deb (beeb8d0e2819e48561b74022f36841c01f8514a4) from buildinfo.debian.net
Tue Nov 5 15:53:48 UTC 2019 - UNREPRODUCIBLE: yasat_848-1_all.deb (dfb02a8ea2a459629f5823e8ecfee6365b4882ac) only on ftp.debian.org.
Tue Nov 5 15:53:49 UTC 2019 - downloading .json for yarnpkg_1.13.0-1_all.deb (dfb02a8ea2a459629f5823e8ecfee6365b4882ac) from buildinfo.debian.net
Tue Nov 5 15:54:18 UTC 2019 - REPRODUCIBLE: yarnpkg_1.13.0-1_all.deb (bb3db1f5f659c94dee76680918885c7a4ca20ecb) - reproduced 3 times.
Tue Nov 5 15:54:19 UTC 2019 - downloading .json for yaret_2.1.0-5.1_all.deb (bb3db1f5f659c94dee76680918885c7a4ca20ecb) from buildinfo.debian.net
Tue Nov 5 15:54:49 UTC 2019 - REPRODUCIBLE: yaret_2.1.0-5.1_all.deb (cf5a5d33f77c0569484bd267e1c64f9a70f75379) - reproduced 94 times.
Tue Nov 5 15:54:50 UTC 2019 - downloading .json for yard-doc_0.9.16-1_all.deb (cf5a5d33f77c0569484bd267e1c64f9a70f75379) from buildinfo.debian.net
Tue Nov 5 15:55:19 UTC 2019 - REPRODUCIBLE: yard-doc_0.9.16-1_all.deb (4785010858943118a7908ac1360676c1d1fd0a85) - reproduced 6 times.
Tue Nov 5 15:55:20 UTC 2019 - downloading .json for yard_0.9.16-1_all.deb (4785010858943118a7908ac1360676c1d1fd0a85) from buildinfo.debian.net
Tue Nov 5 15:55:49 UTC 2019 - REPRODUCIBLE: yard_0.9.16-1_all.deb (cbc7d070e97712c0c6857dd22f3a8d1af877d3ba) - reproduced 63 times.
Tue Nov 5 15:55:50 UTC 2019 - downloading .json for yara-doc_3.9.0-1_all.deb (cbc7d070e97712c0c6857dd22f3a8d1af877d3ba) from buildinfo.debian.net
Tue Nov 5 15:56:20 UTC 2019 - REPRODUCIBLE: yara-doc_3.9.0-1_all.deb (8822a0242a4d2aad72556d9a86b40237e3b98f38) - reproduced 51 times.
Tue Nov 5 15:56:20 UTC 2019 - downloading .json for yara_3.9.0-1_amd64.deb (8822a0242a4d2aad72556d9a86b40237e3b98f38) from buildinfo.debian.net
Tue Nov 5 15:56:50 UTC 2019 - REPRODUCIBLE: yara_3.9.0-1_amd64.deb (0e732ca4111599a058c3e8d3b1dbe9fb171669cf) - reproduced 53 times.
Tue Nov 5 15:56:50 UTC 2019 - downloading .json for yapra_0.1.2-7.1_all.deb (0e732ca4111599a058c3e8d3b1dbe9fb171669cf) from buildinfo.debian.net
Tue Nov 5 15:57:20 UTC 2019 - REPRODUCIBLE: yapra_0.1.2-7.1_all.deb (4ffd5bbf5ba98d92fbceb7c07ed9902e383e08da) - reproduced 3 times.
Tue Nov 5 15:57:20 UTC 2019 - downloading .json for yapps2_2.2.1-3_all.deb (4ffd5bbf5ba98d92fbceb7c07ed9902e383e08da) from buildinfo.debian.net
Tue Nov 5 15:57:50 UTC 2019 - UNREPRODUCIBLE: yapps2_2.2.1-3_all.deb (39b22a9b42120653138bed239d4acd2ea6e601bc) only on ftp.debian.org.
Tue Nov 5 15:57:50 UTC 2019 - downloading .json for yapf3_0.25.0-2.1_all.deb (39b22a9b42120653138bed239d4acd2ea6e601bc) from buildinfo.debian.net
Tue Nov 5 15:58:19 UTC 2019 - UNREPRODUCIBLE: yapf3_0.25.0-2.1_all.deb (d7a3b77e40937dd07b34ab03c6ce8578e5c42d33) only on ftp.debian.org.
Tue Nov 5 15:58:20 UTC 2019 - downloading .json for yapf_0.25.0-2.1_all.deb (d7a3b77e40937dd07b34ab03c6ce8578e5c42d33) from buildinfo.debian.net
Tue Nov 5 15:58:50 UTC 2019 - REPRODUCIBLE: yapf_0.25.0-2.1_all.deb (9945f8fcd0bd09aeb033ba1c65ffdbc50d3ec524) - reproduced 75 times.
Tue Nov 5 15:58:51 UTC 2019 - downloading .json for yapet_2.3-1_amd64.deb (9945f8fcd0bd09aeb033ba1c65ffdbc50d3ec524) from buildinfo.debian.net
Tue Nov 5 15:59:21 UTC 2019 - REPRODUCIBLE: yapet_2.3-1_amd64.deb (59caf14787c08bf1767c3c60e6c080e3dce206f9) - reproduced 75 times.
Tue Nov 5 15:59:22 UTC 2019 - downloading .json for yank_1.1.0-2_amd64.deb (59caf14787c08bf1767c3c60e6c080e3dce206f9) from buildinfo.debian.net
Tue Nov 5 15:59:52 UTC 2019 - UNREPRODUCIBLE: yank_1.1.0-2_amd64.deb (2dd2d7a8005c0bf0946737d8c9342a01e39ede92) only on ftp.debian.org.
Tue Nov 5 15:59:52 UTC 2019 - downloading .json for yangdump_2.11-1_amd64.deb (2dd2d7a8005c0bf0946737d8c9342a01e39ede92) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2dd2d7a8005c0bf0946737d8c9342a01e39ede92
Tue Nov 5 16:00:23 UTC 2019 - UNREPRODUCIBLE: yangdump_2.11-1_amd64.deb (61f352b7d48c2e94a9e2802f41e1e632885909d8) only on ftp.debian.org.
Tue Nov 5 16:00:24 UTC 2019 - downloading .json for yangcli_2.11-1_amd64.deb (61f352b7d48c2e94a9e2802f41e1e632885909d8) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/61f352b7d48c2e94a9e2802f41e1e632885909d8
Tue Nov 5 16:00:56 UTC 2019 - UNREPRODUCIBLE: yangcli_2.11-1_amd64.deb (debe8901fce1f3a89c52440a07b35bf84967ee2d) only on ftp.debian.org.
Tue Nov 5 16:00:56 UTC 2019 - downloading .json for yang-tools_0.16.105-1_amd64.deb (debe8901fce1f3a89c52440a07b35bf84967ee2d) from buildinfo.debian.net
Tue Nov 5 16:01:28 UTC 2019 - REPRODUCIBLE: yang-tools_0.16.105-1_amd64.deb (cbe06e54e21d1bc55a133928aaab26f801034df5) - reproduced 4 times.
Tue Nov 5 16:01:28 UTC 2019 - downloading .json for yample_0.30-3_all.deb (cbe06e54e21d1bc55a133928aaab26f801034df5) from buildinfo.debian.net
Tue Nov 5 16:01:59 UTC 2019 - UNREPRODUCIBLE: yample_0.30-3_all.deb (b0c5a03e39e5321692ca0e9d90b4be437883408c) only on ftp.debian.org.
Tue Nov 5 16:02:00 UTC 2019 - downloading .json for yamllint_1.15.0-1_all.deb (b0c5a03e39e5321692ca0e9d90b4be437883408c) from buildinfo.debian.net
Tue Nov 5 16:02:31 UTC 2019 - UNREPRODUCIBLE: yamllint_1.15.0-1_all.deb (2aea1460ef63d28781985abd76252a92967c1cf3) only on ftp.debian.org.
Tue Nov 5 16:02:32 UTC 2019 - downloading .json for yaml-mode_0.0.13-1_all.deb (2aea1460ef63d28781985abd76252a92967c1cf3) from buildinfo.debian.net
Tue Nov 5 16:03:03 UTC 2019 - REPRODUCIBLE: yaml-mode_0.0.13-1_all.deb (0abc7b8efac0e5c1fc552f4f05dffd135de5c639) - reproduced 75 times.
Tue Nov 5 16:03:04 UTC 2019 - downloading .json for yamdi_1.4-2+b2_amd64.deb (0abc7b8efac0e5c1fc552f4f05dffd135de5c639) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/0abc7b8efac0e5c1fc552f4f05dffd135de5c639
Tue Nov 5 16:03:35 UTC 2019 - UNREPRODUCIBLE: yamdi_1.4-2+b2_amd64.deb (d7997020cde14679158c25f507ed1beccf5b689b) only on ftp.debian.org.
Tue Nov 5 16:03:36 UTC 2019 - downloading .json for yakuake_3.0.5-1_amd64.deb (d7997020cde14679158c25f507ed1beccf5b689b) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d7997020cde14679158c25f507ed1beccf5b689b
Tue Nov 5 16:04:08 UTC 2019 - UNREPRODUCIBLE: yakuake_3.0.5-1_amd64.deb (ba3d04a0d12b3c258169e6fdc6ad500be267736a) only on ftp.debian.org.
Tue Nov 5 16:04:09 UTC 2019 - downloading .json for yajl-tools_2.1.0-3_amd64.deb (ba3d04a0d12b3c258169e6fdc6ad500be267736a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ba3d04a0d12b3c258169e6fdc6ad500be267736a
Tue Nov 5 16:04:41 UTC 2019 - UNREPRODUCIBLE: yajl-tools_2.1.0-3_amd64.deb (05ae6bb7b110086dcf0f3e8aa9f532cf1e62c3f3) only on ftp.debian.org.
Tue Nov 5 16:04:42 UTC 2019 - downloading .json for yahtzeesharp_1.1-6.1_all.deb (05ae6bb7b110086dcf0f3e8aa9f532cf1e62c3f3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/05ae6bb7b110086dcf0f3e8aa9f532cf1e62c3f3
Tue Nov 5 16:05:14 UTC 2019 - UNREPRODUCIBLE: yahtzeesharp_1.1-6.1_all.deb (2f1097fdda12d477349051800a7013e4fc62c729) only on ftp.debian.org.
Tue Nov 5 16:05:15 UTC 2019 - downloading .json for yahoo2mbox_0.24-2_all.deb (2f1097fdda12d477349051800a7013e4fc62c729) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/2f1097fdda12d477349051800a7013e4fc62c729
Tue Nov 5 16:05:46 UTC 2019 - UNREPRODUCIBLE: yahoo2mbox_0.24-2_all.deb (5bbf511fc33e8d8bc273ea71b6a7ef08d4293b67) only on ftp.debian.org.
Tue Nov 5 16:05:47 UTC 2019 - downloading .json for yaha_0.1.83-1_amd64.deb (5bbf511fc33e8d8bc273ea71b6a7ef08d4293b67) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5bbf511fc33e8d8bc273ea71b6a7ef08d4293b67
Tue Nov 5 16:06:19 UTC 2019 - UNREPRODUCIBLE: yaha_0.1.83-1_amd64.deb (7de5fd18e65e9d22c17768891a84730dff7660f3) only on ftp.debian.org.
Tue Nov 5 16:06:20 UTC 2019 - downloading .json for yagv_0.4~20130422.r5bd15ed+dfsg-4_all.deb (7de5fd18e65e9d22c17768891a84730dff7660f3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/7de5fd18e65e9d22c17768891a84730dff7660f3
Tue Nov 5 16:06:52 UTC 2019 - UNREPRODUCIBLE: yagv_0.4~20130422.r5bd15ed+dfsg-4_all.deb (f5d03c4ee9345438fdc16f83301b6092cd6c55fa) only on ftp.debian.org.
Tue Nov 5 16:06:53 UTC 2019 - downloading .json for yagtd_0.3.4-1.1_all.deb (f5d03c4ee9345438fdc16f83301b6092cd6c55fa) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f5d03c4ee9345438fdc16f83301b6092cd6c55fa
Tue Nov 5 16:07:25 UTC 2019 - UNREPRODUCIBLE: yagtd_0.3.4-1.1_all.deb (1498f2579fcda901a598aaf5fedf05dec5daad21) only on ftp.debian.org.
Tue Nov 5 16:07:26 UTC 2019 - downloading .json for yagiuda_1.19-9+b1_amd64.deb (1498f2579fcda901a598aaf5fedf05dec5daad21) from buildinfo.debian.net
Tue Nov 5 16:07:57 UTC 2019 - UNREPRODUCIBLE: yagiuda_1.19-9+b1_amd64.deb (5c3ea4d38e8f9cc6cc9499e4122980bf481cb60a) only on ftp.debian.org.
Tue Nov 5 16:07:58 UTC 2019 - downloading .json for yaggo_1.5.10-2_all.deb (5c3ea4d38e8f9cc6cc9499e4122980bf481cb60a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5c3ea4d38e8f9cc6cc9499e4122980bf481cb60a
Tue Nov 5 16:08:30 UTC 2019 - UNREPRODUCIBLE: yaggo_1.5.10-2_all.deb (6feb3a72effa63109e66975ff12f23f778c46af7) only on ftp.debian.org.
Tue Nov 5 16:08:31 UTC 2019 - downloading .json for yagf_0.9.3.2-1+b1_amd64.deb (6feb3a72effa63109e66975ff12f23f778c46af7) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/6feb3a72effa63109e66975ff12f23f778c46af7
Tue Nov 5 16:09:03 UTC 2019 - UNREPRODUCIBLE: yagf_0.9.3.2-1+b1_amd64.deb (f606cae13e28a4855d396da8cb43e36d5b0da30f) only on ftp.debian.org.
Tue Nov 5 16:09:03 UTC 2019 - downloading .json for yafc_1.3.7-4_amd64.deb (f606cae13e28a4855d396da8cb43e36d5b0da30f) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f606cae13e28a4855d396da8cb43e36d5b0da30f
Tue Nov 5 16:09:35 UTC 2019 - UNREPRODUCIBLE: yafc_1.3.7-4_amd64.deb (ca892e3db983ca8d9306e9d5ad1ddb4240c9d463) only on ftp.debian.org.
Tue Nov 5 16:09:36 UTC 2019 - downloading .json for yadm_1.12.0-2_all.deb (ca892e3db983ca8d9306e9d5ad1ddb4240c9d463) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ca892e3db983ca8d9306e9d5ad1ddb4240c9d463
Tue Nov 5 16:10:09 UTC 2019 - UNREPRODUCIBLE: yadm_1.12.0-2_all.deb (644a3e55624e15e19e84f75c9b9a6b76e84a19df) only on ftp.debian.org.
Tue Nov 5 16:10:09 UTC 2019 - downloading .json for yadifa_2.3.8-1_amd64.deb (644a3e55624e15e19e84f75c9b9a6b76e84a19df) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/644a3e55624e15e19e84f75c9b9a6b76e84a19df
Tue Nov 5 16:10:42 UTC 2019 - UNREPRODUCIBLE: yadifa_2.3.8-1_amd64.deb (2328897c224dd213eb987665af6748d39e736116) only on ftp.debian.org.
Tue Nov 5 16:10:42 UTC 2019 - downloading .json for yade-doc_2019.01a-2_all.deb (2328897c224dd213eb987665af6748d39e736116) from buildinfo.debian.net
Tue Nov 5 16:11:12 UTC 2019 - UNREPRODUCIBLE: yade-doc_2019.01a-2_all.deb (9949aaaa3342e8362f38afc1739b24f4ca5672b2) only on ftp.debian.org.
Tue Nov 5 16:11:13 UTC 2019 - downloading .json for yade_2019.01a-2_amd64.deb (9949aaaa3342e8362f38afc1739b24f4ca5672b2) from buildinfo.debian.net
Tue Nov 5 16:11:42 UTC 2019 - UNREPRODUCIBLE: yade_2019.01a-2_amd64.deb (885324b4b54eef5aad631e0d9959aff5555efb60) only on ftp.debian.org.
Tue Nov 5 16:11:43 UTC 2019 - downloading .json for yad_0.40.0-1_amd64.deb (885324b4b54eef5aad631e0d9959aff5555efb60) from buildinfo.debian.net
Tue Nov 5 16:12:13 UTC 2019 - UNREPRODUCIBLE: yad_0.40.0-1_amd64.deb (43a3bd242e457f442d8c6cb145ee820b3ede1642) only on ftp.debian.org.
Tue Nov 5 16:12:13 UTC 2019 - downloading .json for yacpi_3.0.1-1+b1_amd64.deb (43a3bd242e457f442d8c6cb145ee820b3ede1642) from buildinfo.debian.net
Tue Nov 5 16:12:43 UTC 2019 - REPRODUCIBLE: yacpi_3.0.1-1+b1_amd64.deb (b564ed04756c3403ae5ec653e7c27ec10efa9cba) - reproduced 3 times.
Tue Nov 5 16:12:44 UTC 2019 - downloading .json for yacas-doc_1.3.6-2_all.deb (b564ed04756c3403ae5ec653e7c27ec10efa9cba) from buildinfo.debian.net
Tue Nov 5 16:13:13 UTC 2019 - UNREPRODUCIBLE: yacas-doc_1.3.6-2_all.deb (44d20588555db33eaa161ac228e6deed1a900394) only on ftp.debian.org.
Tue Nov 5 16:13:14 UTC 2019 - downloading .json for yacas_1.3.6-2+b1_amd64.deb (44d20588555db33eaa161ac228e6deed1a900394) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins1004097121337634737.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_reverse_runner #291
From jenkins at jenkins.debian.net Tue Nov 5 16:21:26 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:21:26 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_arm64_codethink13 #10712
In-Reply-To: <361162155.55.1572962769755.JavaMail.jenkins@jenkins>
References: <361162155.55.1572962769755.JavaMail.jenkins@jenkins>
Message-ID: <318979317.87.1572970886325.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 16:26:10 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:26:10 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_wbq0 #15463
In-Reply-To: <374769376.81.1572970184666.JavaMail.jenkins@jenkins>
References: <374769376.81.1572970184666.JavaMail.jenkins@jenkins>
Message-ID: <1389639632.88.1572971170218.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 16:30:42 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:30:42 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is unstable:
reproducible_maintenance_amd64_jenkins #17491
In-Reply-To: <27030829.66.1572964151100.JavaMail.jenkins@jenkins>
References: <27030829.66.1572964151100.JavaMail.jenkins@jenkins>
Message-ID: <502706367.89.1572971442710.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 16:32:39 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 16:32:39 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_cbxi4pro0 #15614
In-Reply-To: <931767762.85.1572970369956.JavaMail.jenkins@jenkins>
References: <931767762.85.1572970369956.JavaMail.jenkins@jenkins>
Message-ID: <458264086.90.1572971559080.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 17:22:49 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 17:22:49 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_bullseye_install_parl-desktop-strict/39
Message-ID: <1778323394.92.1572974569817.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-strict/39//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-strict/39/ for more information.
From jenkins at jenkins.debian.net Tue Nov 5 17:27:01 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 17:27:01 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_bullseye_install_parl-desktop-world/39
Message-ID: <1058113292.94.1572974821528.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-world/39//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_install_parl-desktop-world/39/ for more information.
From jenkins at jenkins.debian.net Tue Nov 5 18:06:59 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 18:06:59 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3418
In-Reply-To: <723464786.79.1572970007253.JavaMail.jenkins@jenkins>
References: <723464786.79.1572970007253.JavaMail.jenkins@jenkins>
Message-ID: <515271839.95.1572977219296.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 18:08:03 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 18:08:03 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to stable :
reproducible_maintenance_amd64_jenkins #17492
In-Reply-To: <502706367.89.1572971442710.JavaMail.jenkins@jenkins>
References: <502706367.89.1572971442710.JavaMail.jenkins@jenkins>
Message-ID: <186627032.96.1572977283346.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 18:09:49 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 18:09:49 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_fdroid_build_apps #697
In-Reply-To: <995383063.144.1572768127089.JavaMail.jenkins@jenkins>
References: <995383063.144.1572768127089.JavaMail.jenkins@jenkins>
Message-ID: <524680446.97.1572977389476.JavaMail.jenkins@jenkins>
See
Changes:
[gitlab] remove redundant google analytics match
[gitlab] Update scanner.TestCase to match new regex regime
[hans] gitlab-ci: fedora no longer installs difftools by default
------------------------------------------
[...truncated 3.22 MB...]
DEBUG: buildserver > checking for sys/stat.h... yes
DEBUG: buildserver > checking for stdlib.h... yes
DEBUG: buildserver > checking for string.h... yes
DEBUG: buildserver > checking for memory.h... yes
DEBUG: buildserver > checking for strings.h... yes
DEBUG: buildserver > checking for inttypes.h... yes
DEBUG: buildserver > checking for stdint.h... yes
DEBUG: buildserver > checking for unistd.h... yes
DEBUG: buildserver > checking minix/config.h usability... no
DEBUG: buildserver > checking minix/config.h presence... no
DEBUG: buildserver > checking for minix/config.h... no
DEBUG: buildserver > checking whether it is safe to define __EXTENSIONS__... yes
DEBUG: buildserver > checking how to print strings... printf
DEBUG: buildserver > checking for a sed that does not truncate output... /bin/sed
DEBUG: buildserver > checking for fgrep... /bin/grep -F
DEBUG: buildserver > checking for ld used by /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang... /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/arm-linux-androideabi/bin/ld
DEBUG: buildserver > checking if the linker (/home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/arm-linux-androideabi/bin/ld) is GNU ld... yes
DEBUG: buildserver > checking for BSD- or MS-compatible name lister (nm)... no
DEBUG: buildserver > checking for arm-linux-androideabi-dumpbin... no
DEBUG: buildserver > checking for arm-linux-androideabi-link... no
DEBUG: buildserver > checking for dumpbin... no
DEBUG: buildserver > checking for link... link -dump
DEBUG: buildserver > configure: WARNING: using cross tools not prefixed with host triplet
DEBUG: buildserver > checking the name lister (nm) interface... BSD nm
DEBUG: buildserver > checking whether ln -s works... yes
DEBUG: buildserver > checking the maximum length of command line arguments... 1572864
DEBUG: buildserver > checking whether the shell understands some XSI constructs... yes
DEBUG: buildserver > checking whether the shell understands "+="... yes
DEBUG: buildserver > checking how to convert x86_64-pc-linux-gnu file names to arm-unknown-linux-androideabi format... func_convert_file_noop
DEBUG: buildserver > checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
DEBUG: buildserver > checking for /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/arm-linux-androideabi/bin/ld option to reload object files... -r
DEBUG: buildserver > checking for arm-linux-androideabi-objdump... no
DEBUG: buildserver > checking for objdump... objdump
DEBUG: buildserver > checking how to recognize dependent libraries... pass_all
DEBUG: buildserver > checking for arm-linux-androideabi-dlltool... no
DEBUG: buildserver > checking for dlltool... no
DEBUG: buildserver > checking how to associate runtime and link libraries... printf %s\n
DEBUG: buildserver > checking for arm-linux-androideabi-ar... no
DEBUG: buildserver > checking for ar... ar
DEBUG: buildserver > checking for archiver @FILE support... @
DEBUG: buildserver > checking for arm-linux-androideabi-strip... strip
DEBUG: buildserver > checking for arm-linux-androideabi-ranlib... no
DEBUG: buildserver > checking for ranlib... ranlib
DEBUG: buildserver > checking command to parse nm output from /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang object... ok
DEBUG: buildserver > checking for sysroot... no
DEBUG: buildserver > checking for arm-linux-androideabi-mt... no
DEBUG: buildserver > checking for mt... mt
DEBUG: buildserver > checking if mt is a manifest tool... no
DEBUG: buildserver > checking for dlfcn.h... yes
DEBUG: buildserver > checking for objdir... .libs
DEBUG: buildserver > checking if /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang supports -fno-rtti -fno-exceptions... yes
DEBUG: buildserver > checking for /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang option to produce PIC... -fPIC -DPIC
DEBUG: buildserver > checking if /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang PIC flag -fPIC -DPIC works... yes
DEBUG: buildserver > checking if /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang static flag -static works... no
DEBUG: buildserver > checking if /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang supports -c -o file.o... yes
DEBUG: buildserver > checking if /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang supports -c -o file.o... (cached) yes
DEBUG: buildserver > checking whether the /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang linker (/home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/arm-linux-androideabi/bin/ld) supports shared libraries... yes
DEBUG: buildserver > checking whether -lc should be explicitly linked in... no
DEBUG: buildserver > checking dynamic linker characteristics... Android linker
DEBUG: buildserver > checking how to hardcode library paths into programs... immediate
DEBUG: buildserver > checking whether stripping libraries is possible... yes
DEBUG: buildserver > checking if libtool supports shared libraries... yes
DEBUG: buildserver > checking whether to build shared libraries... yes
DEBUG: buildserver > checking whether to build static libraries... no
DEBUG: buildserver > checking for arm-linux-androideabi-windres... no
DEBUG: buildserver > checking for windres... no
DEBUG: buildserver > checking whether to enable maintainer-specific portions of Makefiles... yes
DEBUG: buildserver > checking whether make supports nested variables... (cached) yes
DEBUG: buildserver > checking for gawk... (cached) mawk
DEBUG: buildserver > checking for arm-linux-androideabi-gcc... (cached) /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang
DEBUG: buildserver > checking whether we are using the GNU C compiler... (cached) yes
DEBUG: buildserver > checking whether /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang accepts -g... (cached) yes
DEBUG: buildserver > checking for /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang option to accept ISO C89... (cached) none needed
DEBUG: buildserver > checking whether /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang understands -c and -o together... (cached) yes
DEBUG: buildserver > checking dependency style of /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang... (cached) gcc3
DEBUG: buildserver > checking how to run the C preprocessor... /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -E
DEBUG: buildserver > checking whether ln -s works... yes
DEBUG: buildserver > checking whether make sets $(MAKE)... (cached) yes
DEBUG: buildserver > checking for bison... bison -y
DEBUG: buildserver > checking for inline... inline
DEBUG: buildserver > checking for cc for build... cc
DEBUG: buildserver > checking if gcc supports -Wno-missing-field-initializers... yes
DEBUG: buildserver > checking if gcc supports -Wdeclaration-after-statement... yes
DEBUG: buildserver > checking if gcc supports -Wpointer-arith... yes
DEBUG: buildserver > checking if gcc supports -Wno-pointer-sign... yes
DEBUG: buildserver > checking whether the visibility attribute is supported... yes
DEBUG: buildserver > checking for broken visibility attribute... no
DEBUG: buildserver > checking for broken alias attribute... no
DEBUG: buildserver > checking if gcc supports -fvisibility=hidden... yes
DEBUG: buildserver > checking for gpg-error-config... /home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/bin/gpg-error-config
DEBUG: buildserver > checking for GPG Error - version >= 1.8... yes (1.20)
DEBUG: buildserver > checking for ANSI C header files... (cached) yes
DEBUG: buildserver > checking for string.h... (cached) yes
DEBUG: buildserver > checking for an ANSI C-conforming const... yes
DEBUG: buildserver > checking whether byte ordering is bigendian... no
DEBUG: buildserver > checking size of unsigned int... 4
DEBUG: buildserver > checking size of unsigned long... 4
DEBUG: buildserver > checking for u32 typedef... no
DEBUG: buildserver > checking for memmove... yes
DEBUG: buildserver > checking for strchr... yes
DEBUG: buildserver > checking for strtol... yes
DEBUG: buildserver > checking for strtoul... yes
DEBUG: buildserver > checking for stpcpy... no
DEBUG: buildserver > checking for gmtime_r... yes
DEBUG: buildserver > checking for getenv... yes
DEBUG: buildserver > checking for size_t... yes
DEBUG: buildserver > checking for working alloca.h... yes
DEBUG: buildserver > checking for alloca... yes
DEBUG: buildserver > checking whether self tests are run under valgrind... no
DEBUG: buildserver > checking that generated files are newer than configure... done
DEBUG: buildserver > configure: creating ./config.status
DEBUG: buildserver >
DEBUG: buildserver > Libksba v1.3.4-unknown has been configured as follows:
DEBUG: buildserver >
DEBUG: buildserver > Revision: 0000000 (0)
DEBUG: buildserver > Platform: arm-unknown-linux-androideabi
DEBUG: buildserver >
DEBUG: buildserver >
DEBUG: buildserver > /bin/bash ./config.status
DEBUG: buildserver > config.status: creating Makefile
DEBUG: buildserver > config.status: creating m4/Makefile
DEBUG: buildserver > config.status: creating gl/Makefile
DEBUG: buildserver > config.status: creating src/Makefile
DEBUG: buildserver > config.status: creating src/ksba-config
DEBUG: buildserver > config.status: creating src/versioninfo.rc
DEBUG: buildserver > config.status: creating tests/Makefile
DEBUG: buildserver > config.status: creating doc/Makefile
DEBUG: buildserver > config.status: creating config.h
DEBUG: buildserver > config.status: config.h is unchanged
DEBUG: buildserver > config.status: executing depfiles commands
DEBUG: buildserver > config.status: executing libtool commands
DEBUG: buildserver > (CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/build-aux/missing autoheader)
DEBUG: buildserver > rm -f stamp-h1
DEBUG: buildserver > touch config.h.in
DEBUG: buildserver > cd . && /bin/bash ./config.status config.h
DEBUG: buildserver > config.status: creating config.h
DEBUG: buildserver > config.status: config.h is unchanged
DEBUG: buildserver > make all-recursive
DEBUG: buildserver > make[2]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba'
DEBUG: buildserver > Making all in m4
DEBUG: buildserver > make[3]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/m4'
DEBUG: buildserver > make[3]: Nothing to be done for 'all'.
DEBUG: buildserver > make[3]: Leaving directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/m4'
DEBUG: buildserver > Making all in gl
DEBUG: buildserver > make[3]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/gl'
DEBUG: buildserver > cp ./alloca_.h alloca.h-t
DEBUG: buildserver > mv alloca.h-t alloca.h
DEBUG: buildserver > make all-am
DEBUG: buildserver > make[4]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/gl'
DEBUG: buildserver > /bin/bash ../libtool --tag=CC --mode=compile /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIE -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -c -o dummyobj.lo dummyobj.c
DEBUG: buildserver > libtool: compile: /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -c dummyobj.c -fPIC -DPIC -o .libs/dummyobj.o
DEBUG: buildserver > /bin/bash ../libtool --tag=CC --mode=link /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIE -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -llog -L/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/lib -pie -o libgnu.la dummyobj.lo
DEBUG: buildserver > libtool: link: ar cru .libs/libgnu.a .libs/dummyobj.o
DEBUG: buildserver > ar: `u' modifier ignored since `D' is the default (see `U')
DEBUG: buildserver > libtool: link: ranlib .libs/libgnu.a
DEBUG: buildserver > libtool: link: ( cd ".libs" && rm -f "libgnu.la" && ln -s "../libgnu.la" "libgnu.la" )
DEBUG: buildserver > make[4]: Leaving directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/gl'
DEBUG: buildserver > make[3]: Leaving directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/gl'
DEBUG: buildserver > Making all in src
DEBUG: buildserver > make[3]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/src'
DEBUG: buildserver > /bin/bash ../build-aux/ylwrap asn1-parse.y y.tab.c asn1-parse.c y.tab.h `echo asn1-parse.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output asn1-parse.output -- bison -y
DEBUG: buildserver > /home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/src/asn1-parse.y:707.15-717.17: warning: rule useless in parser due to conflicts [-Wother]
DEBUG: buildserver > | IMPORTS identifier_list FROM IDENTIFIER obj_constant_list
DEBUG: buildserver > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
DEBUG: buildserver > cc -I. -DBUILD_GENTOOLS -o asn1-gentables \
DEBUG: buildserver > ./asn1-gentables.c \
DEBUG: buildserver > `test -f 'asn1-parse.c' || echo './'`asn1-parse.c \
DEBUG: buildserver > ./asn1-func.c \
DEBUG: buildserver > ./gen-help.c
DEBUG: buildserver > ./asn1-gentables.c: In function ‘one_file’:
DEBUG: buildserver > ./asn1-gentables.c:283:8: warning: implicit declaration of function ‘ksba_asn_parse_file’ [-Wimplicit-function-declaration]
DEBUG: buildserver > rc = ksba_asn_parse_file (fname, &tree, check_only);
DEBUG: buildserver > ^~~~~~~~~~~~~~~~~~~
DEBUG: buildserver > ./asn1-gentables.c:289:9: warning: implicit declaration of function ‘ksba_asn_tree_dump’ [-Wimplicit-function-declaration]
DEBUG: buildserver > ksba_asn_tree_dump (tree, dump_only==2? "<":NULL, fp);
DEBUG: buildserver > ^~~~~~~~~~~~~~~~~~
DEBUG: buildserver > make all-am
DEBUG: buildserver > make[4]: Entering directory '/home/vagrant/build/srclib/pEpJNIAdapter/android/external/libksba/src'
DEBUG: buildserver > /bin/bash ../libtool --tag=CC --mode=compile /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIE -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT visibility.lo -MD -MP -MF .deps/visibility.Tpo -c -o visibility.lo visibility.c
DEBUG: buildserver > libtool: compile: /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT visibility.lo -MD -MP -MF .deps/visibility.Tpo -c visibility.c -fPIC -DPIC -o .libs/visibility.o
DEBUG: buildserver > mv -f .deps/visibility.Tpo .deps/visibility.Plo
DEBUG: buildserver > /bin/bash ../libtool --tag=CC --mode=compile /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIE -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT reader.lo -MD -MP -MF .deps/reader.Tpo -c -o reader.lo reader.c
DEBUG: buildserver > libtool: compile: /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT reader.lo -MD -MP -MF .deps/reader.Tpo -c reader.c -fPIC -DPIC -o .libs/reader.o
DEBUG: buildserver > mv -f .deps/reader.Tpo .deps/reader.Plo
DEBUG: buildserver > /bin/bash ../libtool --tag=CC --mode=compile /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIE -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT writer.lo -MD -MP -MF .deps/writer.Tpo -c -o writer.lo writer.c
DEBUG: buildserver > libtool: compile: /home/vagrant/build/srclib/pEpJNIAdapter/android/external/ndk-18-arm/bin/arm-linux-androideabi-clang -DHAVE_CONFIG_H -I. -I.. -I../gl -I../gl -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -DANDROID -I/home/vagrant/build/srclib/pEpJNIAdapter/android/external/data/data/security.pEp/app_opt/include -fPIC -Wall -Wcast-align -Wshadow -Wstrict-prototypes -Wformat -Wno-format-y2k -Wformat-security -W -Wno-sign-compare -Wno-missing-field-initializers -Wdeclaration-after-statement -Wpointer-arith -Wno-pointer-sign -fvisibility=hidden -MT writer.lo -MD -MP -MF .deps/writer.Tpo -c writer.c -fPIC -DPIC -o .libs/writer.o
DEBUG: buildserver > mv -f .deps/writer.Tpo .deps/writer.Plo
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build168-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins11923987409234861656.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build168-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_fdroid_build_apps #697
From jenkins at jenkins.debian.net Tue Nov 5 18:22:56 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 18:22:56 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_opi2c #13271
In-Reply-To: <773757554.82.1572970216748.JavaMail.jenkins@jenkins>
References: <773757554.82.1572970216748.JavaMail.jenkins@jenkins>
Message-ID: <271879941.98.1572978176809.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 19:05:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 19:05:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Still Failing:
chroot-installation_buster_install_design-desktop-animation_upgrade_to_bullseye/16
Message-ID: <1813623837.100.1572980759284.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_buster_install_design-desktop-animation_upgrade_to_bullseye/16//console or just https://jenkins.debian.net/job/chroot-installation_buster_install_design-desktop-animation_upgrade_to_bullseye/16/ for more information.
From jenkins at jenkins.debian.net Tue Nov 5 19:06:07 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 19:06:07 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_reverse_runner #292
In-Reply-To: <556160597.86.1572970421549.JavaMail.jenkins@jenkins>
References: <556160597.86.1572970421549.JavaMail.jenkins@jenkins>
Message-ID: <1386728045.101.1572980767112.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 106.41 KB...]
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d91fca0814a8c7975794768dd5963d798423c294
Tue Nov 5 18:22:21 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-xml_0.8+dfsg-18.2_amd64.deb (ea02928a1759776fd830bdb18fb07f4a03b004bf) only on ftp.debian.org.
Tue Nov 5 18:22:21 UTC 2019 - downloading .json for xmms2-plugin-wavpack_0.8+dfsg-18.2_amd64.deb (ea02928a1759776fd830bdb18fb07f4a03b004bf) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ea02928a1759776fd830bdb18fb07f4a03b004bf
Tue Nov 5 18:22:54 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-wavpack_0.8+dfsg-18.2_amd64.deb (9aa825a14e5cf901e8dfff9d427ebb7f7df0f1c3) only on ftp.debian.org.
Tue Nov 5 18:22:55 UTC 2019 - downloading .json for xmms2-plugin-vorbis_0.8+dfsg-18.2_amd64.deb (9aa825a14e5cf901e8dfff9d427ebb7f7df0f1c3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9aa825a14e5cf901e8dfff9d427ebb7f7df0f1c3
Tue Nov 5 18:23:27 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-vorbis_0.8+dfsg-18.2_amd64.deb (a152166bfdf28dc2090e1a16f871bdac0bf384df) only on ftp.debian.org.
Tue Nov 5 18:23:28 UTC 2019 - downloading .json for xmms2-plugin-vocoder_0.8+dfsg-18.2_amd64.deb (a152166bfdf28dc2090e1a16f871bdac0bf384df) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/a152166bfdf28dc2090e1a16f871bdac0bf384df
Tue Nov 5 18:24:00 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-vocoder_0.8+dfsg-18.2_amd64.deb (dd138b22ec329f8d9e5409ed3149caa48e4870ef) only on ftp.debian.org.
Tue Nov 5 18:24:01 UTC 2019 - downloading .json for xmms2-plugin-tta_0.8+dfsg-18.2_amd64.deb (dd138b22ec329f8d9e5409ed3149caa48e4870ef) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/dd138b22ec329f8d9e5409ed3149caa48e4870ef
Tue Nov 5 18:24:33 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-tta_0.8+dfsg-18.2_amd64.deb (c3f006927b486be078b03cb7f5c18c5df83bba84) only on ftp.debian.org.
Tue Nov 5 18:24:34 UTC 2019 - downloading .json for xmms2-plugin-speex_0.8+dfsg-18.2_amd64.deb (c3f006927b486be078b03cb7f5c18c5df83bba84) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c3f006927b486be078b03cb7f5c18c5df83bba84
Tue Nov 5 18:25:06 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-speex_0.8+dfsg-18.2_amd64.deb (0544ab05f4586910c364ff9f3a252eb5b6923d3a) only on ftp.debian.org.
Tue Nov 5 18:25:07 UTC 2019 - downloading .json for xmms2-plugin-sndfile_0.8+dfsg-18.2_amd64.deb (0544ab05f4586910c364ff9f3a252eb5b6923d3a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/0544ab05f4586910c364ff9f3a252eb5b6923d3a
Tue Nov 5 18:25:39 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-sndfile_0.8+dfsg-18.2_amd64.deb (669b202533333959a3c2baad7c41fdc2d0959d40) only on ftp.debian.org.
Tue Nov 5 18:25:40 UTC 2019 - downloading .json for xmms2-plugin-smb_0.8+dfsg-18.2_amd64.deb (669b202533333959a3c2baad7c41fdc2d0959d40) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/669b202533333959a3c2baad7c41fdc2d0959d40
Tue Nov 5 18:26:13 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-smb_0.8+dfsg-18.2_amd64.deb (cd58fc17a35cc9bc3e8b242171dc38ed795f601b) only on ftp.debian.org.
Tue Nov 5 18:26:13 UTC 2019 - downloading .json for xmms2-plugin-sid_0.8+dfsg-18.2_amd64.deb (cd58fc17a35cc9bc3e8b242171dc38ed795f601b) from buildinfo.debian.net
Tue Nov 5 18:26:45 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-sid_0.8+dfsg-18.2_amd64.deb (13e95826ccc00b67f15321ea3b5c0ebd2ed2ccd3) only on ftp.debian.org.
Tue Nov 5 18:26:45 UTC 2019 - downloading .json for xmms2-plugin-rss_0.8+dfsg-18.2_amd64.deb (13e95826ccc00b67f15321ea3b5c0ebd2ed2ccd3) from buildinfo.debian.net
Tue Nov 5 18:27:17 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-rss_0.8+dfsg-18.2_amd64.deb (dc17f561a7a69fa14a6253bf5a304886fc7eafaa) only on ftp.debian.org.
Tue Nov 5 18:27:17 UTC 2019 - downloading .json for xmms2-plugin-pulse_0.8+dfsg-18.2_amd64.deb (dc17f561a7a69fa14a6253bf5a304886fc7eafaa) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/dc17f561a7a69fa14a6253bf5a304886fc7eafaa
Tue Nov 5 18:27:49 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-pulse_0.8+dfsg-18.2_amd64.deb (c4ea169bcfa19dff432dca00beb17dc717798e65) only on ftp.debian.org.
Tue Nov 5 18:27:50 UTC 2019 - downloading .json for xmms2-plugin-pls_0.8+dfsg-18.2_amd64.deb (c4ea169bcfa19dff432dca00beb17dc717798e65) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c4ea169bcfa19dff432dca00beb17dc717798e65
Tue Nov 5 18:28:22 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-pls_0.8+dfsg-18.2_amd64.deb (d7446e8684b66035a6acb41999e90dd0698aa3a3) only on ftp.debian.org.
Tue Nov 5 18:28:23 UTC 2019 - downloading .json for xmms2-plugin-oss_0.8+dfsg-18.2_amd64.deb (d7446e8684b66035a6acb41999e90dd0698aa3a3) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/d7446e8684b66035a6acb41999e90dd0698aa3a3
Tue Nov 5 18:28:55 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-oss_0.8+dfsg-18.2_amd64.deb (0eebbf37419bb9224f18635ab402124f3731bbe4) only on ftp.debian.org.
Tue Nov 5 18:28:56 UTC 2019 - downloading .json for xmms2-plugin-ofa_0.8+dfsg-18.2_amd64.deb (0eebbf37419bb9224f18635ab402124f3731bbe4) from buildinfo.debian.net
Tue Nov 5 18:29:26 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-ofa_0.8+dfsg-18.2_amd64.deb (2ac85f82be5563dd5e92a88735ee9c45ea3dd7fe) only on ftp.debian.org.
Tue Nov 5 18:29:27 UTC 2019 - downloading .json for xmms2-plugin-normalize_0.8+dfsg-18.2_amd64.deb (2ac85f82be5563dd5e92a88735ee9c45ea3dd7fe) from buildinfo.debian.net
Tue Nov 5 18:29:57 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-normalize_0.8+dfsg-18.2_amd64.deb (a3e6ecfcdd6bd3418e642aaa115b0b7ebb839582) only on ftp.debian.org.
Tue Nov 5 18:29:58 UTC 2019 - downloading .json for xmms2-plugin-musepack_0.8+dfsg-18.2_amd64.deb (a3e6ecfcdd6bd3418e642aaa115b0b7ebb839582) from buildinfo.debian.net
Tue Nov 5 18:30:28 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-musepack_0.8+dfsg-18.2_amd64.deb (8c96cb6a4b06140800dae857f4d2adc9d178eb99) only on ftp.debian.org.
Tue Nov 5 18:30:28 UTC 2019 - downloading .json for xmms2-plugin-mpg123_0.8+dfsg-18.2_amd64.deb (8c96cb6a4b06140800dae857f4d2adc9d178eb99) from buildinfo.debian.net
Tue Nov 5 18:30:58 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-mpg123_0.8+dfsg-18.2_amd64.deb (373aa4d91d2c592e0cb8f5c6b8c4f8eb34cae51b) only on ftp.debian.org.
Tue Nov 5 18:30:58 UTC 2019 - downloading .json for xmms2-plugin-mp4_0.8+dfsg-18.2_amd64.deb (373aa4d91d2c592e0cb8f5c6b8c4f8eb34cae51b) from buildinfo.debian.net
Tue Nov 5 18:31:28 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-mp4_0.8+dfsg-18.2_amd64.deb (b10a8e17bb17ba0524c1ae421a2e6b259a65003e) only on ftp.debian.org.
Tue Nov 5 18:31:29 UTC 2019 - downloading .json for xmms2-plugin-modplug_0.8+dfsg-18.2_amd64.deb (b10a8e17bb17ba0524c1ae421a2e6b259a65003e) from buildinfo.debian.net
Tue Nov 5 18:31:58 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-modplug_0.8+dfsg-18.2_amd64.deb (b3b009c84fb71b4aa643f53fcddb66d3986fcea2) only on ftp.debian.org.
Tue Nov 5 18:31:59 UTC 2019 - downloading .json for xmms2-plugin-mms_0.8+dfsg-18.2_amd64.deb (b3b009c84fb71b4aa643f53fcddb66d3986fcea2) from buildinfo.debian.net
Tue Nov 5 18:32:28 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-mms_0.8+dfsg-18.2_amd64.deb (6f746130963e1b77c5077c6905eac3ef17a13bce) only on ftp.debian.org.
Tue Nov 5 18:32:29 UTC 2019 - downloading .json for xmms2-plugin-mad_0.8+dfsg-18.2_amd64.deb (6f746130963e1b77c5077c6905eac3ef17a13bce) from buildinfo.debian.net
Tue Nov 5 18:32:59 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-mad_0.8+dfsg-18.2_amd64.deb (a2028453611ca334e8816d7227f6030beb28ae2c) only on ftp.debian.org.
Tue Nov 5 18:32:59 UTC 2019 - downloading .json for xmms2-plugin-m3u_0.8+dfsg-18.2_amd64.deb (a2028453611ca334e8816d7227f6030beb28ae2c) from buildinfo.debian.net
Tue Nov 5 18:33:29 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-m3u_0.8+dfsg-18.2_amd64.deb (22c442fffe8737b3c7f36a22aca655c805f1d06f) only on ftp.debian.org.
Tue Nov 5 18:33:30 UTC 2019 - downloading .json for xmms2-plugin-karaoke_0.8+dfsg-18.2_amd64.deb (22c442fffe8737b3c7f36a22aca655c805f1d06f) from buildinfo.debian.net
Tue Nov 5 18:34:00 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-karaoke_0.8+dfsg-18.2_amd64.deb (8c4edb3e18a5e366231a2cd31f380486900f91e8) only on ftp.debian.org.
Tue Nov 5 18:34:00 UTC 2019 - downloading .json for xmms2-plugin-jack_0.8+dfsg-18.2_amd64.deb (8c4edb3e18a5e366231a2cd31f380486900f91e8) from buildinfo.debian.net
Tue Nov 5 18:34:30 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-jack_0.8+dfsg-18.2_amd64.deb (d48ac7d5fe9d559da249a8593c97055f72c9fe1b) only on ftp.debian.org.
Tue Nov 5 18:34:30 UTC 2019 - downloading .json for xmms2-plugin-id3v2_0.8+dfsg-18.2_amd64.deb (d48ac7d5fe9d559da249a8593c97055f72c9fe1b) from buildinfo.debian.net
Tue Nov 5 18:35:00 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-id3v2_0.8+dfsg-18.2_amd64.deb (e419d27c905db01814a32ee3048fc65851446084) only on ftp.debian.org.
Tue Nov 5 18:35:01 UTC 2019 - downloading .json for xmms2-plugin-icymetaint_0.8+dfsg-18.2_amd64.deb (e419d27c905db01814a32ee3048fc65851446084) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e419d27c905db01814a32ee3048fc65851446084
Tue Nov 5 18:35:33 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-icymetaint_0.8+dfsg-18.2_amd64.deb (7c25d150816527def807cf4c7d5405ffdff2f6d9) only on ftp.debian.org.
Tue Nov 5 18:35:33 UTC 2019 - downloading .json for xmms2-plugin-ices_0.8+dfsg-18.2_amd64.deb (7c25d150816527def807cf4c7d5405ffdff2f6d9) from buildinfo.debian.net
Tue Nov 5 18:36:02 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-ices_0.8+dfsg-18.2_amd64.deb (c71969414ea2517baaaa4c5fb7fdda300465672b) only on ftp.debian.org.
Tue Nov 5 18:36:03 UTC 2019 - downloading .json for xmms2-plugin-html_0.8+dfsg-18.2_amd64.deb (c71969414ea2517baaaa4c5fb7fdda300465672b) from buildinfo.debian.net
Tue Nov 5 18:36:33 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-html_0.8+dfsg-18.2_amd64.deb (62703b37b24bd59510226058cfbf26270a6bac67) only on ftp.debian.org.
Tue Nov 5 18:36:33 UTC 2019 - downloading .json for xmms2-plugin-gvfs_0.8+dfsg-18.2_amd64.deb (62703b37b24bd59510226058cfbf26270a6bac67) from buildinfo.debian.net
Tue Nov 5 18:37:03 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-gvfs_0.8+dfsg-18.2_amd64.deb (e84b168e2abb311fd33a2051aaf58227eb4bf065) only on ftp.debian.org.
Tue Nov 5 18:37:03 UTC 2019 - downloading .json for xmms2-plugin-gme_0.8+dfsg-18.2_amd64.deb (e84b168e2abb311fd33a2051aaf58227eb4bf065) from buildinfo.debian.net
Tue Nov 5 18:37:33 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-gme_0.8+dfsg-18.2_amd64.deb (50a549e8dc4013da91e90874cd0794838bcc4a2c) only on ftp.debian.org.
Tue Nov 5 18:37:33 UTC 2019 - downloading .json for xmms2-plugin-flv_0.8+dfsg-18.2_amd64.deb (50a549e8dc4013da91e90874cd0794838bcc4a2c) from buildinfo.debian.net
Tue Nov 5 18:38:03 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-flv_0.8+dfsg-18.2_amd64.deb (6b1277a4829f31c84e3008767f45f64cdf808e2e) only on ftp.debian.org.
Tue Nov 5 18:38:04 UTC 2019 - downloading .json for xmms2-plugin-flac_0.8+dfsg-18.2_amd64.deb (6b1277a4829f31c84e3008767f45f64cdf808e2e) from buildinfo.debian.net
Tue Nov 5 18:38:33 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-flac_0.8+dfsg-18.2_amd64.deb (fc1370ad39c880bb6d59fe73e900911277f8d60b) only on ftp.debian.org.
Tue Nov 5 18:38:34 UTC 2019 - downloading .json for xmms2-plugin-faad_0.8+dfsg-18.2_amd64.deb (fc1370ad39c880bb6d59fe73e900911277f8d60b) from buildinfo.debian.net
Tue Nov 5 18:39:04 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-faad_0.8+dfsg-18.2_amd64.deb (92fc65db8b70b439870ebb95b4e31f6b3c8993be) only on ftp.debian.org.
Tue Nov 5 18:39:04 UTC 2019 - downloading .json for xmms2-plugin-daap_0.8+dfsg-18.2_amd64.deb (92fc65db8b70b439870ebb95b4e31f6b3c8993be) from buildinfo.debian.net
Tue Nov 5 18:39:34 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-daap_0.8+dfsg-18.2_amd64.deb (54a6ee19354ee8c42b58ea9aa1d047a5c8f8ce07) only on ftp.debian.org.
Tue Nov 5 18:39:35 UTC 2019 - downloading .json for xmms2-plugin-curl_0.8+dfsg-18.2_amd64.deb (54a6ee19354ee8c42b58ea9aa1d047a5c8f8ce07) from buildinfo.debian.net
Tue Nov 5 18:40:05 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-curl_0.8+dfsg-18.2_amd64.deb (1a61abcb0faa077df71cabc0ad3c981f84d9d118) only on ftp.debian.org.
Tue Nov 5 18:40:06 UTC 2019 - downloading .json for xmms2-plugin-cue_0.8+dfsg-18.2_amd64.deb (1a61abcb0faa077df71cabc0ad3c981f84d9d118) from buildinfo.debian.net
Tue Nov 5 18:40:35 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-cue_0.8+dfsg-18.2_amd64.deb (e46cdc7496c3f41e08b4f9130c2b4151837ba039) only on ftp.debian.org.
Tue Nov 5 18:40:36 UTC 2019 - downloading .json for xmms2-plugin-cdda_0.8+dfsg-18.2_amd64.deb (e46cdc7496c3f41e08b4f9130c2b4151837ba039) from buildinfo.debian.net
Tue Nov 5 18:41:05 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-cdda_0.8+dfsg-18.2_amd64.deb (9a23fa7c775a5da1aac47ba65a2233073d85a197) only on ftp.debian.org.
Tue Nov 5 18:41:05 UTC 2019 - downloading .json for xmms2-plugin-avcodec_0.8+dfsg-18.2_amd64.deb (9a23fa7c775a5da1aac47ba65a2233073d85a197) from buildinfo.debian.net
Tue Nov 5 18:41:35 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-avcodec_0.8+dfsg-18.2_amd64.deb (3c9b05afd7919aa1731419db23b95b5f431f4225) only on ftp.debian.org.
Tue Nov 5 18:41:35 UTC 2019 - downloading .json for xmms2-plugin-asx_0.8+dfsg-18.2_amd64.deb (3c9b05afd7919aa1731419db23b95b5f431f4225) from buildinfo.debian.net
Tue Nov 5 18:42:05 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-asx_0.8+dfsg-18.2_amd64.deb (5c733693879443073b7bc01b4ab43e956a47276d) only on ftp.debian.org.
Tue Nov 5 18:42:05 UTC 2019 - downloading .json for xmms2-plugin-asf_0.8+dfsg-18.2_amd64.deb (5c733693879443073b7bc01b4ab43e956a47276d) from buildinfo.debian.net
Tue Nov 5 18:42:35 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-asf_0.8+dfsg-18.2_amd64.deb (bac09479a7cd9ae57552fd76aa469e620105b31d) only on ftp.debian.org.
Tue Nov 5 18:42:36 UTC 2019 - downloading .json for xmms2-plugin-apefile_0.8+dfsg-18.2_amd64.deb (bac09479a7cd9ae57552fd76aa469e620105b31d) from buildinfo.debian.net
Tue Nov 5 18:43:06 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-apefile_0.8+dfsg-18.2_amd64.deb (f3f7ec454397dcae88049c2f47c3c09ab6b7ff0f) only on ftp.debian.org.
Tue Nov 5 18:43:07 UTC 2019 - downloading .json for xmms2-plugin-ao_0.8+dfsg-18.2_amd64.deb (f3f7ec454397dcae88049c2f47c3c09ab6b7ff0f) from buildinfo.debian.net
Tue Nov 5 18:43:36 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-ao_0.8+dfsg-18.2_amd64.deb (2f648296652f2329f31b4cfb9e909dee00a9595f) only on ftp.debian.org.
Tue Nov 5 18:43:37 UTC 2019 - downloading .json for xmms2-plugin-alsa_0.8+dfsg-18.2_amd64.deb (2f648296652f2329f31b4cfb9e909dee00a9595f) from buildinfo.debian.net
Tue Nov 5 18:44:06 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-alsa_0.8+dfsg-18.2_amd64.deb (9349d1fd926d8795d3ccd081b459677236be7584) only on ftp.debian.org.
Tue Nov 5 18:44:06 UTC 2019 - downloading .json for xmms2-plugin-all_0.8+dfsg-18.2_amd64.deb (9349d1fd926d8795d3ccd081b459677236be7584) from buildinfo.debian.net
Tue Nov 5 18:44:37 UTC 2019 - UNREPRODUCIBLE: xmms2-plugin-all_0.8+dfsg-18.2_amd64.deb (21bae13782ff7e8d9852efc00b61d40e9b4ad043) only on ftp.debian.org.
Tue Nov 5 18:44:37 UTC 2019 - downloading .json for xmms2-plugin-airplay_0.8+dfsg-18.2_amd64.deb (21bae13782ff7e8d9852efc00b61d40e9b4ad043) from buildinfo.debian.net
Tue Nov 5 18:45:07 UTC 2019 - REPRODUCIBLE: xmms2-plugin-airplay_0.8+dfsg-18.2_amd64.deb (9b197489f4ac9ec9b43b39987585dd6fecd6c157) - reproduced 43 times.
Tue Nov 5 18:45:08 UTC 2019 - downloading .json for xmms2-icon_0.8+dfsg-18.2_all.deb (9b197489f4ac9ec9b43b39987585dd6fecd6c157) from buildinfo.debian.net
Tue Nov 5 18:45:37 UTC 2019 - UNREPRODUCIBLE: xmms2-icon_0.8+dfsg-18.2_all.deb (ebc52b0229fab757a9516688910adc954ab3dc04) only on ftp.debian.org.
Tue Nov 5 18:45:38 UTC 2019 - downloading .json for xmms2-dev_0.8+dfsg-18.2_all.deb (ebc52b0229fab757a9516688910adc954ab3dc04) from buildinfo.debian.net
Tue Nov 5 18:46:08 UTC 2019 - REPRODUCIBLE: xmms2-dev_0.8+dfsg-18.2_all.deb (c144d47a09a353e97a9f2d045013150f057da540) - reproduced 97 times.
Tue Nov 5 18:46:09 UTC 2019 - downloading .json for xmms2-core_0.8+dfsg-18.2_amd64.deb (c144d47a09a353e97a9f2d045013150f057da540) from buildinfo.debian.net
Tue Nov 5 18:46:38 UTC 2019 - REPRODUCIBLE: xmms2-core_0.8+dfsg-18.2_amd64.deb (3fad94580b33fd02657c028d14c9202c3ad96921) - reproduced 97 times.
Tue Nov 5 18:46:38 UTC 2019 - downloading .json for xmms2-client-nycli_0.8+dfsg-18.2_amd64.deb (3fad94580b33fd02657c028d14c9202c3ad96921) from buildinfo.debian.net
Tue Nov 5 18:47:08 UTC 2019 - UNREPRODUCIBLE: xmms2-client-nycli_0.8+dfsg-18.2_amd64.deb (a2cb1842d65174b3e986c07d2d6398aa92ba7fea) only on ftp.debian.org.
Tue Nov 5 18:47:09 UTC 2019 - downloading .json for xmms2-client-medialib-updater_0.8+dfsg-18.2_amd64.deb (a2cb1842d65174b3e986c07d2d6398aa92ba7fea) from buildinfo.debian.net
Tue Nov 5 18:47:38 UTC 2019 - REPRODUCIBLE: xmms2-client-medialib-updater_0.8+dfsg-18.2_amd64.deb (b1906df951a25f982d9b7c2918a0b97bd28bf451) - reproduced 43 times.
Tue Nov 5 18:47:39 UTC 2019 - downloading .json for xmms2-client-cli_0.8+dfsg-18.2_amd64.deb (b1906df951a25f982d9b7c2918a0b97bd28bf451) from buildinfo.debian.net
Tue Nov 5 18:48:08 UTC 2019 - UNREPRODUCIBLE: xmms2-client-cli_0.8+dfsg-18.2_amd64.deb (31ce76971fd2463e74773637909f09386f53b6c1) only on ftp.debian.org.
Tue Nov 5 18:48:09 UTC 2019 - downloading .json for xmms2-client-avahi_0.8+dfsg-18.2_amd64.deb (31ce76971fd2463e74773637909f09386f53b6c1) from buildinfo.debian.net
Tue Nov 5 18:48:38 UTC 2019 - UNREPRODUCIBLE: xmms2-client-avahi_0.8+dfsg-18.2_amd64.deb (f94683e6633beae026ebc8065c2474fa14092d78) only on ftp.debian.org.
Tue Nov 5 18:48:39 UTC 2019 - downloading .json for xmms2_0.8+dfsg-18.2_amd64.deb (f94683e6633beae026ebc8065c2474fa14092d78) from buildinfo.debian.net
Tue Nov 5 18:49:08 UTC 2019 - UNREPRODUCIBLE: xmms2_0.8+dfsg-18.2_amd64.deb (d9c0228fb8d23689daec1a0d50c76bb77ec44672) only on ftp.debian.org.
Tue Nov 5 18:49:09 UTC 2019 - downloading .json for xmltv-util_0.6.1-1_all.deb (d9c0228fb8d23689daec1a0d50c76bb77ec44672) from buildinfo.debian.net
Tue Nov 5 18:49:39 UTC 2019 - REPRODUCIBLE: xmltv-util_0.6.1-1_all.deb (91fd686f131694b9b90c5fb31cd4e16aacd7a808) - reproduced 43 times.
Tue Nov 5 18:49:40 UTC 2019 - downloading .json for xmltv-gui_0.6.1-1_all.deb (91fd686f131694b9b90c5fb31cd4e16aacd7a808) from buildinfo.debian.net
Tue Nov 5 18:50:10 UTC 2019 - REPRODUCIBLE: xmltv-gui_0.6.1-1_all.deb (0245be5fe44c49e71ecc66fe04e45b0cef0967c5) - reproduced 84 times.
Tue Nov 5 18:50:10 UTC 2019 - downloading .json for xmltv_0.6.1-1_all.deb (0245be5fe44c49e71ecc66fe04e45b0cef0967c5) from buildinfo.debian.net
Tue Nov 5 18:50:40 UTC 2019 - REPRODUCIBLE: xmltv_0.6.1-1_all.deb (f2068db624d5e64a1c862cf27c93c6b97b663216) - reproduced 84 times.
Tue Nov 5 18:50:41 UTC 2019 - downloading .json for xmltooling-schemas_3.0.4-1_all.deb (f2068db624d5e64a1c862cf27c93c6b97b663216) from buildinfo.debian.net
Tue Nov 5 18:51:10 UTC 2019 - REPRODUCIBLE: xmltooling-schemas_3.0.4-1_all.deb (306edf8690fdabb32bad73fdc851215f43199a5e) - reproduced 92 times.
Tue Nov 5 18:51:11 UTC 2019 - downloading .json for xmltoman_0.5-1_all.deb (306edf8690fdabb32bad73fdc851215f43199a5e) from buildinfo.debian.net
Tue Nov 5 18:51:40 UTC 2019 - REPRODUCIBLE: xmltoman_0.5-1_all.deb (79232bae2b8aaeb309ea947ab1bb98f1645e6ecb) - reproduced 90 times.
Tue Nov 5 18:51:40 UTC 2019 - downloading .json for xmlto_0.0.28-2.1_amd64.deb (79232bae2b8aaeb309ea947ab1bb98f1645e6ecb) from buildinfo.debian.net
Tue Nov 5 18:52:09 UTC 2019 - REPRODUCIBLE: xmlto_0.0.28-2.1_amd64.deb (76b169668db5ea5e674aa64c0f4d35720ecc04e0) - reproduced 39 times.
Tue Nov 5 18:52:10 UTC 2019 - downloading .json for xmlstarlet_1.6.1-2_amd64.deb (76b169668db5ea5e674aa64c0f4d35720ecc04e0) from buildinfo.debian.net
Tue Nov 5 18:52:39 UTC 2019 - REPRODUCIBLE: xmlstarlet_1.6.1-2_amd64.deb (1b4dac0dd563d6d48d779d41bc22fad85fb741d0) - reproduced 5 times.
Tue Nov 5 18:52:40 UTC 2019 - downloading .json for xmlsec1_1.2.27-2_amd64.deb (1b4dac0dd563d6d48d779d41bc22fad85fb741d0) from buildinfo.debian.net
Tue Nov 5 18:53:09 UTC 2019 - UNREPRODUCIBLE: xmlsec1_1.2.27-2_amd64.deb (65a5247af24ce91c5c5b295adbbb769a700988f4) only on ftp.debian.org.
Tue Nov 5 18:53:10 UTC 2019 - downloading .json for xmlrpc-api-utils_1.33.14-8+b1_amd64.deb (65a5247af24ce91c5c5b295adbbb769a700988f4) from buildinfo.debian.net
Tue Nov 5 18:53:39 UTC 2019 - REPRODUCIBLE: xmlrpc-api-utils_1.33.14-8+b1_amd64.deb (92d725f55300620ddc3fa96f24c20147833920ea) - reproduced 5 times.
Tue Nov 5 18:53:40 UTC 2019 - downloading .json for xmlroff_0.6.2-1.4_amd64.deb (92d725f55300620ddc3fa96f24c20147833920ea) from buildinfo.debian.net
Tue Nov 5 18:54:10 UTC 2019 - UNREPRODUCIBLE: xmlroff_0.6.2-1.4_amd64.deb (9b3604fd1aa115c16ea3a8c6682104b001b7afae) only on ftp.debian.org.
Tue Nov 5 18:54:10 UTC 2019 - downloading .json for xmlindent_0.2.17-6_amd64.deb (9b3604fd1aa115c16ea3a8c6682104b001b7afae) from buildinfo.debian.net
Tue Nov 5 18:54:40 UTC 2019 - REPRODUCIBLE: xmlindent_0.2.17-6_amd64.deb (8791aff208d3981d61ba26d87c80d2bbe78aba16) - reproduced 6 times.
Tue Nov 5 18:54:41 UTC 2019 - downloading .json for xmlformat-ruby_1.04-2_all.deb (8791aff208d3981d61ba26d87c80d2bbe78aba16) from buildinfo.debian.net
Tue Nov 5 18:55:12 UTC 2019 - REPRODUCIBLE: xmlformat-ruby_1.04-2_all.deb (f578062014a4bdee7365829dd8a10e4ab03cfe27) - reproduced 3 times.
Tue Nov 5 18:55:12 UTC 2019 - downloading .json for xmlformat-perl_1.04-2_all.deb (f578062014a4bdee7365829dd8a10e4ab03cfe27) from buildinfo.debian.net
Tue Nov 5 18:55:43 UTC 2019 - UNREPRODUCIBLE: xmlformat-perl_1.04-2_all.deb (e4a7ea03475c23b2e4cc92b92e2b18bb7d9b8afc) only on ftp.debian.org.
Tue Nov 5 18:55:44 UTC 2019 - downloading .json for xmlformat-doc_1.04-2_all.deb (e4a7ea03475c23b2e4cc92b92e2b18bb7d9b8afc) from buildinfo.debian.net
Tue Nov 5 18:56:15 UTC 2019 - UNREPRODUCIBLE: xmlformat-doc_1.04-2_all.deb (1056d197953e1113ecc5cf4734e6f6d3503221b4) only on ftp.debian.org.
Tue Nov 5 18:56:16 UTC 2019 - downloading .json for xmldiff-xmlrev_0.6.10-3_all.deb (1056d197953e1113ecc5cf4734e6f6d3503221b4) from buildinfo.debian.net
Tue Nov 5 18:56:47 UTC 2019 - UNREPRODUCIBLE: xmldiff-xmlrev_0.6.10-3_all.deb (fa4c27da71ecbb33fa020fb99260b86aa5a2c25c) only on ftp.debian.org.
Tue Nov 5 18:56:47 UTC 2019 - downloading .json for xmldiff_0.6.10-3_amd64.deb (fa4c27da71ecbb33fa020fb99260b86aa5a2c25c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/fa4c27da71ecbb33fa020fb99260b86aa5a2c25c
Tue Nov 5 18:57:19 UTC 2019 - UNREPRODUCIBLE: xmldiff_0.6.10-3_amd64.deb (51fd275bfa029008aedbf0f078d6ead20e4f1226) only on ftp.debian.org.
Tue Nov 5 18:57:20 UTC 2019 - downloading .json for xmlcopyeditor-dbg_1.2.1.3-3_amd64.deb (51fd275bfa029008aedbf0f078d6ead20e4f1226) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/51fd275bfa029008aedbf0f078d6ead20e4f1226
Tue Nov 5 18:57:51 UTC 2019 - UNREPRODUCIBLE: xmlcopyeditor-dbg_1.2.1.3-3_amd64.deb (34755813b2eabe90d093298e3ad4f5403e104c57) only on ftp.debian.org.
Tue Nov 5 18:57:52 UTC 2019 - downloading .json for xmlcopyeditor_1.2.1.3-3_amd64.deb (34755813b2eabe90d093298e3ad4f5403e104c57) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/34755813b2eabe90d093298e3ad4f5403e104c57
Tue Nov 5 18:58:24 UTC 2019 - UNREPRODUCIBLE: xmlcopyeditor_1.2.1.3-3_amd64.deb (d309af56aac2affa4d7c61edd640813f3227cb90) only on ftp.debian.org.
Tue Nov 5 18:58:24 UTC 2019 - downloading .json for xmlbeans_3.0.2-1_all.deb (d309af56aac2affa4d7c61edd640813f3227cb90) from buildinfo.debian.net
Tue Nov 5 18:58:56 UTC 2019 - UNREPRODUCIBLE: xmlbeans_3.0.2-1_all.deb (0339cd42e3c4c95bab0b64d4603306eefafd765f) only on ftp.debian.org.
Tue Nov 5 18:58:57 UTC 2019 - downloading .json for xml2_0.5-2_amd64.deb (0339cd42e3c4c95bab0b64d4603306eefafd765f) from buildinfo.debian.net
Tue Nov 5 18:59:27 UTC 2019 - REPRODUCIBLE: xml2_0.5-2_amd64.deb (cf88316bd06203693550394a620af4e93ad0606c) - reproduced 109 times.
Tue Nov 5 18:59:27 UTC 2019 - downloading .json for xml-twig-tools_1%3a3.50-1.1_all.deb (cf88316bd06203693550394a620af4e93ad0606c) from buildinfo.debian.net
Tue Nov 5 18:59:57 UTC 2019 - UNREPRODUCIBLE: xml-twig-tools_1%3a3.50-1.1_all.deb (ddbfc8ee79a435da72db62c55e95678018322aaa) only on ftp.debian.org.
Tue Nov 5 18:59:58 UTC 2019 - downloading .json for xml-security-c-utils_2.0.2-3_amd64.deb (ddbfc8ee79a435da72db62c55e95678018322aaa) from buildinfo.debian.net
Tue Nov 5 19:00:28 UTC 2019 - REPRODUCIBLE: xml-security-c-utils_2.0.2-3_amd64.deb (5300fe5dd6bc79a7c65062b1c2fc963645d8cd9d) - reproduced 74 times.
Tue Nov 5 19:00:29 UTC 2019 - downloading .json for xml-rs_0.8.0-1_amd64.deb (5300fe5dd6bc79a7c65062b1c2fc963645d8cd9d) from buildinfo.debian.net
Tue Nov 5 19:00:58 UTC 2019 - REPRODUCIBLE: xml-rs_0.8.0-1_amd64.deb (7c92362fcb05dc0214e81c22f6115dd27e159110) - reproduced 4 times.
Tue Nov 5 19:00:59 UTC 2019 - downloading .json for xml-core_0.18+nmu1_all.deb (7c92362fcb05dc0214e81c22f6115dd27e159110) from buildinfo.debian.net
Tue Nov 5 19:01:29 UTC 2019 - REPRODUCIBLE: xml-core_0.18+nmu1_all.deb (c7d947b6f4cf856845e1d9b3a3f331043b4d366a) - reproduced 2 times.
Tue Nov 5 19:01:29 UTC 2019 - downloading .json for xmix_2.1-7+b1_amd64.deb (c7d947b6f4cf856845e1d9b3a3f331043b4d366a) from buildinfo.debian.net
Tue Nov 5 19:01:59 UTC 2019 - REPRODUCIBLE: xmix_2.1-7+b1_amd64.deb (519f43a659764e4128896fde51b30c67ef73bdd0) - reproduced 68 times.
Tue Nov 5 19:01:59 UTC 2019 - downloading .json for xmille_2.0-13_amd64.deb (519f43a659764e4128896fde51b30c67ef73bdd0) from buildinfo.debian.net
Tue Nov 5 19:02:29 UTC 2019 - UNREPRODUCIBLE: xmille_2.0-13_amd64.deb (b213d30b1b87cd49e24ebce16687f9b89aa5588d) only on ftp.debian.org.
Tue Nov 5 19:02:30 UTC 2019 - downloading .json for xmedcon_0.16.1+dfsg-1_amd64.deb (b213d30b1b87cd49e24ebce16687f9b89aa5588d) from buildinfo.debian.net
Tue Nov 5 19:02:59 UTC 2019 - UNREPRODUCIBLE: xmedcon_0.16.1+dfsg-1_amd64.deb (6c08a60aa9f08d9c34ffde125d6f45298b1d3fe7) only on ftp.debian.org.
Tue Nov 5 19:03:00 UTC 2019 - downloading .json for xmds2-doc_2.2.3+dfsg-15_all.deb (6c08a60aa9f08d9c34ffde125d6f45298b1d3fe7) from buildinfo.debian.net
Tue Nov 5 19:03:29 UTC 2019 - REPRODUCIBLE: xmds2-doc_2.2.3+dfsg-15_all.deb (20bcd80ab240a721dd40a2da00ce180aa8a9a1e5) - reproduced 4 times.
Tue Nov 5 19:03:30 UTC 2019 - downloading .json for xmds2_2.2.3+dfsg-15_all.deb (20bcd80ab240a721dd40a2da00ce180aa8a9a1e5) from buildinfo.debian.net
Tue Nov 5 19:03:59 UTC 2019 - REPRODUCIBLE: xmds2_2.2.3+dfsg-15_all.deb (127c714582d6c2758502c53586fdb5a78a1a0aad) - reproduced 73 times.
Tue Nov 5 19:04:00 UTC 2019 - downloading .json for xmbmon_2.05-8+b1_amd64.deb (127c714582d6c2758502c53586fdb5a78a1a0aad) from buildinfo.debian.net
Tue Nov 5 19:04:29 UTC 2019 - REPRODUCIBLE: xmbmon_2.05-8+b1_amd64.deb (5bf36a9d5863e64b2cd928203feb99a270c1d58a) - reproduced 73 times.
Tue Nov 5 19:04:30 UTC 2019 - downloading .json for xmaxima_5.42.1-1_amd64.deb (5bf36a9d5863e64b2cd928203feb99a270c1d58a) from buildinfo.debian.net
Tue Nov 5 19:05:00 UTC 2019 - UNREPRODUCIBLE: xmaxima_5.42.1-1_amd64.deb (7bf328d308e20c24ac3e8df0c295f619b5650bc3) only on ftp.debian.org.
Tue Nov 5 19:05:00 UTC 2019 - downloading .json for xmakemol-gl_5.16-9+b1_amd64.deb (7bf328d308e20c24ac3e8df0c295f619b5650bc3) from buildinfo.debian.net
Tue Nov 5 19:05:30 UTC 2019 - REPRODUCIBLE: xmakemol-gl_5.16-9+b1_amd64.deb (cc71fdd132ab8b5c3b399b2005b27ffaedd7e328) - reproduced 57 times.
Tue Nov 5 19:05:31 UTC 2019 - downloading .json for xmakemol_5.16-9+b1_amd64.deb (cc71fdd132ab8b5c3b399b2005b27ffaedd7e328) from buildinfo.debian.net
Tue Nov 5 19:06:00 UTC 2019 - UNREPRODUCIBLE: xmakemol_5.16-9+b1_amd64.deb (f64fbcf0913a6c167bb4909fea05688d0b28c7f8) only on ftp.debian.org.
Tue Nov 5 19:06:01 UTC 2019 - downloading .json for xmahjongg_3.7-4+b1_amd64.deb (f64fbcf0913a6c167bb4909fea05688d0b28c7f8) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins5346894916988337950.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_reverse_runner #292
From jenkins at jenkins.debian.net Tue Nov 5 19:06:10 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 19:06:10 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: reproducible_fdroid_test
#271
In-Reply-To: <997363488.80.1572970182076.JavaMail.jenkins@jenkins>
References: <997363488.80.1572970182076.JavaMail.jenkins@jenkins>
Message-ID: <660995781.102.1572980770993.JavaMail.jenkins@jenkins>
See
Changes:
[hans] gitlab-ci: fedora no longer installs difftools by default
------------------------------------------
[...truncated 9.05 MB...]
DEBUG: repo/org.ostrya.presencepublisher_10.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/androidx.activity_activity.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat-resources.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.arch.core_core-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.coordinatorlayout_coordinatorlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.core_core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cursoradapter_cursoradapter.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.customview_customview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.documentfile_documentfile.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.drawerlayout_drawerlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.fragment_fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.interpolator_interpolator.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.loader_loader.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.preference_preference.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.print_print.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.recyclerview_recyclerview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.savedstate_savedstate.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.slidingpanelayout_slidingpanelayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable-animated.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.versionedparcelable_versionedparcelable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.viewpager_viewpager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing org.ostrya.presencepublisher_11.apk
DEBUG: Getting signature of org.ostrya.presencepublisher_11.apk
DEBUG: repo/org.ostrya.presencepublisher_11.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/androidx.activity_activity.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat-resources.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.arch.core_core-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.coordinatorlayout_coordinatorlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.core_core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cursoradapter_cursoradapter.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.customview_customview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.documentfile_documentfile.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.drawerlayout_drawerlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.fragment_fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.interpolator_interpolator.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.loader_loader.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.preference_preference.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.print_print.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.recyclerview_recyclerview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.savedstate_savedstate.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.slidingpanelayout_slidingpanelayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable-animated.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.versionedparcelable_versionedparcelable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.viewpager_viewpager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing org.ostrya.presencepublisher_12.apk
DEBUG: Getting signature of org.ostrya.presencepublisher_12.apk
DEBUG: repo/org.ostrya.presencepublisher_12.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/androidx.activity_activity.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat-resources.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.appcompat_appcompat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.arch.core_core-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.coordinatorlayout_coordinatorlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.core_core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.cursoradapter_cursoradapter.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.customview_customview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.documentfile_documentfile.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.drawerlayout_drawerlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.fragment_fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.interpolator_interpolator.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.legacy_legacy-support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.lifecycle_lifecycle-viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.loader_loader.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.preference_preference.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.print_print.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.recyclerview_recyclerview.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.savedstate_savedstate.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.slidingpanelayout_slidingpanelayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable-animated.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.vectordrawable_vectordrawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.versionedparcelable_versionedparcelable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/androidx.viewpager_viewpager.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing org.pacien.tincapp_25.apk
DEBUG: Getting signature of org.pacien.tincapp_25.apk
DEBUG: repo/org.pacien.tincapp_25.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/android.arch.core_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_extensions.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/app_release.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.databinding_baseAdapters.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.databinding_library.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_animated-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_appcompat-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_design.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_recyclerview-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-media-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-v4.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_transition.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common-coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-jdk7.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib_coroutinesExperimental.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/services/java.security.Provider not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing org.pacien.tincapp_27.apk
DEBUG: Getting signature of org.pacien.tincapp_27.apk
DEBUG: repo/org.pacien.tincapp_27.apk: Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): false
Number of signers: 1
WARNING: META-INF/android.arch.core_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_extensions.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_viewmodel.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/app_release.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.databinding_baseAdapters.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.databinding_library.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_animated-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_appcompat-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_design.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_recyclerview-v7.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-ui.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-core-utils.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-fragment.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-media-compat.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-v4.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_support-vector-drawable.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/com.android.support_transition.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-android-extensions-runtime.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common-coroutines.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-common.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib-jdk7.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/kotlin-stdlib_coroutinesExperimental.kotlin_module not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
DEBUG: Density 120 not available, resizing down from 160
DEBUG: Processing org.pacien.tincapp_28.apk
DEBUG: Getting signature of org.pacien.tincapp_28.apk
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build168-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins1646293143463535794.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build168-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_fdroid_test #271
From jenkins at jenkins.debian.net Tue Nov 5 19:06:19 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 19:06:19 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_bbx15 #13618
Message-ID: <341078030.103.1572980779799.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 5.17 KB...]
Tue Nov 5 18:08:15 UTC 2019 - updating the buster/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Tue Nov 5 18:08:20 UTC 2019 - updating pbuilder for buster/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 18:08:20 UTC 2019
I: pbuilder-time-stamp: 1572977300
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.11-7).
build-essential is already the newest version (12.6).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/14959 and its subdirectories
Tue Nov 5 18:09:56 UTC 2019 - updating the bullseye/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Tue Nov 5 18:10:01 UTC 2019 - updating pbuilder for bullseye/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 18:10:01 UTC 2019
I: pbuilder-time-stamp: 1572977401
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/15227 and its subdirectories
Tue Nov 5 18:11:45 UTC 2019 - updating the unstable/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
Tue Nov 5 18:11:52 UTC 2019 - updating pbuilder for unstable/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 18:11:53 UTC 2019
I: pbuilder-time-stamp: 1572977513
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:2 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Hit:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/15940 and its subdirectories
Tue Nov 5 18:13:45 UTC 2019 - updating the experimental/armhf chdist now.
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Reading package lists...
Tue Nov 5 18:13:47 UTC 2019 - updating pbuilder for experimental/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 18:13:48 UTC 2019
I: pbuilder-time-stamp: 1572977628
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Hit:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease
Hit:2 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Hit:3 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/17781 and its subdirectories
Tue Nov 5 18:15:41 UTC 2019 - Removing schroot sessions older than 3 days.
Tue Nov 5 18:15:41 UTC 2019 - Removing schroots older than 3 days.
Tue Nov 5 18:15:41 UTC 2019 - Detecting schroots older than 1 month
Tue Nov 5 18:15:41 UTC 2019 - Looking for processes which should not be there.
Tue Nov 5 18:15:41 UTC 2019 - Checking for artifacts older than a day.
Tue Nov 5 18:15:41 UTC 2019 - Checking for files with bad permissions.
Tue Nov 5 18:15:41 UTC 2019 - the end.
Tue 5 Nov 18:15:41 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-IsNanIUo, which will now be removed.
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'bbx15-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins10097858918458224544.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on bbx15-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_maintenance_armhf_bbx15 #13618
From jenkins at jenkins.debian.net Tue Nov 5 20:00:02 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 20:00:02 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
d-i_build_debian-installer #612
In-Reply-To: <342754245.31.1572218723588.JavaMail.jenkins@jenkins>
References: <342754245.31.1572218723588.JavaMail.jenkins@jenkins>
Message-ID: <1689037975.106.1572984002935.JavaMail.jenkins@jenkins>
See
Changes:
[hwansing] Convert partman-doc from the deprecated debiandoc-sgml to DocBook XML
[hwansing] Fix Makefile + .gitignore as found in partman-doc while converting to
------------------------------------------
[...truncated 68.45 KB...]
Setting up fontconfig (2.13.1-2+b1) ...
Regenerating fonts cache... done.
Setting up gpg-wks-client (2.2.17-3) ...
Setting up po-debconf (1.0.21) ...
Setting up libpango-1.0-0:amd64 (1.42.4-7) ...
Setting up mklibs-copy (0.1.44) ...
Setting up libcairo2:amd64 (1.16.0-4) ...
Setting up libgd3:amd64 (2.2.5-5.2) ...
Setting up gnupg (2.2.17-3) ...
Setting up libpangoft2-1.0-0:amd64 (1.42.4-7) ...
Setting up libpangocairo-1.0-0:amd64 (1.42.4-7) ...
Setting up libbogl-dev (0.1.18-14) ...
Setting up mklibs (0.1.44) ...
Setting up librsvg2-2:amd64 (2.44.15-1) ...
Setting up librsvg2-bin (2.44.15-1) ...
Setting up dh-autoreconf (19) ...
Setting up libdevmapper1.02.1:amd64 (2:1.02.155-3) ...
Setting up dmsetup (2:1.02.155-3) ...
Setting up debhelper (12.7.1) ...
Setting up grub-common (2.04-3) ...
Setting up grub-efi-amd64-bin (2.04-3) ...
Setting up grub-efi-amd64-signed (1+2.04+3) ...
Setting up grub2-common (2.04-3) ...
Setting up shim-signed:amd64 (1.33+15+1533136590.3beb971-7) ...
Processing triggers for libc-bin (2.29-3) ...
Processing triggers for sgml-base (1.29.1) ...
Setting up sgml-data (2.0.11) ...
Setting up docbook-xsl (1.79.1+dfsg-2) ...
Processing triggers for sgml-base (1.29.1) ...
Setting up docbook-xml (4.5-9) ...
Processing triggers for sgml-base (1.29.1) ...
Reading package lists...
Building dependency tree...
Reading state information...
Reading extended state information...
Initializing package states...
Writing extended state information...
Building tag database...
-> Finished parsing the build-deps
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
libfakeroot
The following NEW packages will be installed:
fakeroot libfakeroot
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 132 kB of archives.
After this operation, 393 kB of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian sid/main amd64 libfakeroot amd64 1.24-1 [45.7 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian sid/main amd64 fakeroot amd64 1.24-1 [85.9 kB]
Fetched 132 kB in 0s (458 kB/s)
Selecting previously unselected package libfakeroot:amd64.
(Reading database ... (Reading database ... 5%(Reading database ... 10%(Reading database ... 15%(Reading database ... 20%(Reading database ... 25%(Reading database ... 30%(Reading database ... 35%(Reading database ... 40%(Reading database ... 45%(Reading database ... 50%(Reading database ... 55%(Reading database ... 60%(Reading database ... 65%(Reading database ... 70%(Reading database ... 75%(Reading database ... 80%(Reading database ... 85%(Reading database ... 90%(Reading database ... 95%(Reading database ... 100%(Reading database ... 19514 files and directories currently installed.)
Preparing to unpack .../libfakeroot_1.24-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.24-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../fakeroot_1.24-1_amd64.deb ...
Unpacking fakeroot (1.24-1) ...
Setting up libfakeroot:amd64 (1.24-1) ...
Setting up fakeroot (1.24-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Processing triggers for man-db (2.9.0-1) ...
Not building database; man-db/auto-update is not 'true'.
Processing triggers for libc-bin (2.29-3) ...
I: Running env PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/games dpkg-buildpackage -rfakeroot -us -uc -J23 -b
dpkg-buildpackage: info: source package debian-installer
dpkg-buildpackage: info: source version 20190703
dpkg-buildpackage: info: source distribution UNRELEASED
dpkg-buildpackage: info: source changed by Holger Wansing
dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
fakeroot debian/rules clean
dh_testdir
dh_testroot
dh_clean
/usr/bin/make -C build reallyclean
make[1]: Entering directory '
rm -f ./stamps/tree-unpack-cdrom_isolinux-stamp ./stamps/tree-cdrom_isolinux-stamp ./stamps/extra-cdrom_isolinux-stamp ./stamps/get_udebs-cdrom_isolinux-stamp
rm -f ./tmp/cdrom_isolinux/diskusage.txt
rm -f ./tmp/cdrom_isolinux/all.utf
rm -f ./tmp/cdrom_isolinux/unifont.bdf ./tmp/cdrom_isolinux/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/cdrom/initrd.gz ./dest/cdrom/vmlinuz ./dest/cdrom/debian-cd_info.tar.gz
rm -rf ./tmp/cdrom_isolinux
rm -f ./stamps/tree-unpack-cdrom_gtk-stamp ./stamps/tree-cdrom_gtk-stamp ./stamps/extra-cdrom_gtk-stamp ./stamps/get_udebs-cdrom_gtk-stamp
rm -f ./tmp/cdrom_gtk/diskusage.txt
rm -f ./tmp/cdrom_gtk/all.utf
rm -f ./tmp/cdrom_gtk/unifont.bdf ./tmp/cdrom_gtk/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/cdrom/gtk/initrd.gz ./dest/cdrom/gtk/vmlinuz ./dest/cdrom/gtk/debian-cd_info.tar.gz
rm -rf ./tmp/cdrom_gtk
rm -f ./stamps/tree-unpack-cdrom-xen-stamp ./stamps/tree-cdrom-xen-stamp ./stamps/extra-cdrom-xen-stamp ./stamps/get_udebs-cdrom-xen-stamp
rm -f ./tmp/cdrom-xen/diskusage.txt
rm -f ./tmp/cdrom-xen/all.utf
rm -f ./tmp/cdrom-xen/unifont.bdf ./tmp/cdrom-xen/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/cdrom/xen/vmlinuz ./dest/cdrom/xen/initrd.gz xen_config
rm -rf ./tmp/cdrom-xen
rm -f ./stamps/tree-unpack-netboot-stamp ./stamps/tree-netboot-stamp ./stamps/extra-netboot-stamp ./stamps/get_udebs-netboot-stamp
rm -f ./tmp/netboot/diskusage.txt
rm -f ./tmp/netboot/all.utf
rm -f ./tmp/netboot/unifont.bdf ./tmp/netboot/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/netboot/debian-installer ./dest/netboot/netboot.tar.gz ./dest/netboot/mini.iso
rm -rf ./tmp/netboot
rm -f ./stamps/tree-unpack-netboot-gtk-stamp ./stamps/tree-netboot-gtk-stamp ./stamps/extra-netboot-gtk-stamp ./stamps/get_udebs-netboot-gtk-stamp
rm -f ./tmp/netboot-gtk/diskusage.txt
rm -f ./tmp/netboot-gtk/all.utf
rm -f ./tmp/netboot-gtk/unifont.bdf ./tmp/netboot-gtk/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/netboot/gtk/debian-installer ./dest/netboot/gtk/netboot.tar.gz ./dest/netboot/gtk/mini.iso
rm -rf ./tmp/netboot-gtk
rm -f ./stamps/tree-unpack-netboot-xen-stamp ./stamps/tree-netboot-xen-stamp ./stamps/extra-netboot-xen-stamp ./stamps/get_udebs-netboot-xen-stamp
rm -f ./tmp/netboot-xen/diskusage.txt
rm -f ./tmp/netboot-xen/all.utf
rm -f ./tmp/netboot-xen/unifont.bdf ./tmp/netboot-xen/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/netboot/xen/vmlinuz ./dest/netboot/xen/initrd.gz xen_config
rm -rf ./tmp/netboot-xen
rm -f ./stamps/tree-unpack-hd-media-stamp ./stamps/tree-hd-media-stamp ./stamps/extra-hd-media-stamp ./stamps/get_udebs-hd-media-stamp
rm -f ./tmp/hd-media/diskusage.txt
rm -f ./tmp/hd-media/all.utf
rm -f ./tmp/hd-media/unifont.bdf ./tmp/hd-media/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/hd-media/vmlinuz ./dest/hd-media/initrd.gz ./dest/hd-media/boot.img.gz
rm -rf ./tmp/hd-media
rm -f ./stamps/tree-unpack-hd-media_gtk-stamp ./stamps/tree-hd-media_gtk-stamp ./stamps/extra-hd-media_gtk-stamp ./stamps/get_udebs-hd-media_gtk-stamp
rm -f ./tmp/hd-media_gtk/diskusage.txt
rm -f ./tmp/hd-media_gtk/all.utf
rm -f ./tmp/hd-media_gtk/unifont.bdf ./tmp/hd-media_gtk/tree/lib/unifont.bgf
rm -f pkg-lists/standard-udebs pkg-lists/kernel-module-udebs
rm -rf ./dest/hd-media/gtk/vmlinuz ./dest/hd-media/gtk/initrd.gz
rm -rf ./tmp/hd-media_gtk
for png in boot/x86/pics/futurePrototype.png boot/x86/pics/futurePrototype.png boot/x86/pics/futurePrototype.png; do if [ -f ${png%%.png}.svg ]; then rm -f $png; fi; done
rm -rf apt apt.udeb apt.deb ./dest/ ./tmp/ sourceudebs debugudebs
rm -f sources.list sources.list.udeb localudebs/Packages.gz localudebs/Packages
rm -rf udebs ./stamps/
make[1]: Leaving directory '
/usr/bin/make -C doc/devel/partman clean
make[1]: Entering directory '
make[1]: Leaving directory '
/usr/bin/make -C doc/devel/internals clean
make[1]: Entering directory '
make[1]: Leaving directory '
debian/rules build
rm -f build-stamp
/usr/bin/make -C doc/devel/internals
make[1]: Entering directory '
Writing ./ch01.html for chapter(intro)
Writing ./ch02.html for chapter(running)
Writing ./ch03.html for chapter(udebs)
Writing ./ch04.html for chapter(build)
Writing ./ch05.html for chapter(maintenance)
Writing ./apa.html for appendix(ap-menu-item)
Writing ./apb.html for appendix(ap-hooks)
Writing ./index.html for book
make[1]: Leaving directory '
/usr/bin/make -C doc/devel/partman
make[1]: Entering directory '
Writing ./ch01.html for chapter(ch1)
Writing ./ch02.html for chapter(ch2)
Writing ./ch03.html for chapter(ch3)
Writing ./ch04.html for chapter(ch4)
Writing ./ch05.html for chapter(ch5)
Writing ./ch06.html for chapter(ch6)
Writing ./index.html for book
make[1]: Leaving directory '
touch build-stamp
fakeroot debian/rules binary
dh_testdir
dh_testroot
dh_prep
dh_installdirs
debian/rules build-images
make[1]: Entering directory '
/usr/bin/make -C build all_build stats release \
USE_UDEBS_FROM=unstable BUILD_DATE=20190703 \
USE_PROPOSED_UPDATES= \
USE_UNRELEASED= \
TRANSSTATUS= BOOTMENU_BEEP=n
make[2]: Entering directory '
Using generated sources.list.udeb:
deb [trusted=yes] copy: localudebs/
deb http://cdn-fastly.deb.debian.org/debian unstable main/debian-installer
make[9]: 'sources.list.udeb' is up to date.
Ign:1 copy: localudebs/ InRelease
Ign:2 copy: localudebs/ Release
Ign:3 copy: localudebs/ Packages
Ign:3 copy: localudebs/ Packages
Ign:3 copy: localudebs/ Packages
Get:3 copy: localudebs/ Packages [20 B]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main/debian-installer amd64 Packages [51.6 kB]
Fetched 190 kB in 2s (119 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
dh_testroot
dh_testroot: dh_testroot must be called from the source root
get-packages udeb acpi-modules-5.3.0-1-amd64-di alsa-utils-udeb anna archdetect ata-modules-5.3.0-1-amd64-di bogl-bterm-udeb brltty-udeb busybox-udeb ca-certificates-udeb cdebconf-gtk-terminal cdebconf-gtk-udeb cdebconf-newt-terminal cdebconf-newt-udeb cdebconf-priority cdebconf-text-udeb cdebconf-udeb cdrom-checker cdrom-core-modules-5.3.0-1-amd64-di cdrom-detect cdrom-retriever console-setup-linux-fonts-udeb console-setup-pc-ekmap console-setup-udeb crc-modules-5.3.0-1-amd64-di di-utils di-utils-reboot di-utils-shell di-utils-terminfo env-preseed espeak-ng-data-udeb espeakup-udeb event-modules-5.3.0-1-amd64-di fat-modules-5.3.0-1-amd64-di fb-modules-5.3.0-1-amd64-di file-preseed firewire-core-modules-5.3.0-1-amd64-di fontconfig-udeb fonts-android-udeb fonts-dejavu-mono-udeb fonts-dejavu-udeb fonts-farsiweb-udeb fonts-freefont-udeb fonts-khmeros-udeb fonts-knda-udeb fonts-lao-udeb fonts-lohit-guru-udeb fonts-mlym-udeb fonts-noto-hinted-udeb fonts-sil-abyssinica-udeb fonts-sil-padauk-udeb fonts-taml-udeb fonts-telu-udeb fonts-thai-tlwg-udeb fonts-tibetan-machine-udeb fonts-ukij-uyghur-udeb gtk2-engines-udeb haveged-udeb hw-detect i2c-modules-5.3.0-1-amd64-di initrd-preseed input-modules-5.3.0-1-amd64-di installation-locale isofs-modules-5.3.0-1-amd64-di kbd-udeb kernel-image-5.3.0-1-amd64-di libasound2-udeb libatk-adaptor-udeb libatk-bridge-2.0-0-udeb libatk1.0-udeb libatspi0-udeb libblkid1-udeb libbsd0-udeb libc6-udeb libcairo2-udeb libcrypto1.1-udeb libdatrie1-udeb libdbus-1-3-udeb libdebconfclient0-udeb libdebian-installer4-udeb libdrm2-udeb libevdev2-udeb libexpat1-udeb libffi6-udeb libfontenc1-udeb libfreetype6-udeb libfribidi0-udeb libgail18-udeb libgdk-pixbuf2.0-0-udeb libglib2.0-udeb libgtk2.0-0-udeb libharfbuzz0-udeb libkmod2-udeb libmtdev1-udeb libnewt0.52-udeb libpango1.0-udeb libpci3-udeb libpciaccess0-udeb libpcre2-8-0-udeb libpcre3-udeb libpixman-1-0-udeb libpng16-16-udeb libslang2-udeb libssl1.1-udeb libtextwrap1-udeb libthai-data-udeb libthai0-udeb libtinfo6-udeb libudev1-udeb libuuid1-udeb libvte9-udeb libx11-6-udeb libxau6-udeb libxcb1-udeb libxcursor1-udeb libxdmcp6-udeb libxext6-udeb libxfixes3-udeb libxfont2-udeb libxft2-udeb libxi6-udeb libxinerama1-udeb libxkbfile1-udeb libxrender1-udeb libxshmfence1-udeb load-cdrom localechooser lowmemcheck main-menu media-retriever mmc-core-modules-5.3.0-1-amd64-di mmc-modules-5.3.0-1-amd64-di mountmedia mouse-modules-5.3.0-1-amd64-di nano-udeb pata-modules-5.3.0-1-amd64-di pciutils-udeb pcmcia-modules-5.3.0-1-amd64-di pcmcia-storage-modules-5.3.0-1-amd64-di pcmciautils-udeb preseed-common rescue-check rfkill-modules-5.3.0-1-amd64-di rootskel rootskel-gtk sata-modules-5.3.0-1-amd64-di save-logs scsi-core-modules-5.3.0-1-amd64-di scsi-modules-5.3.0-1-amd64-di serial-modules-5.3.0-1-amd64-di sound-modules-5.3.0-1-amd64-di speakup-modules-5.3.0-1-amd64-di udev-udeb udpkg uinput-modules-5.3.0-1-amd64-di usb-modules-5.3.0-1-amd64-di usb-serial-modules-5.3.0-1-amd64-di usb-storage-modules-5.3.0-1-amd64-di util-linux-udeb wget-udeb x11-xkb-utils-udeb xkb-data-udeb xserver-xorg-core-udeb xserver-xorg-input-evdev-udeb xserver-xorg-video-fbdev-udeb zlib1g-udeb
make[10]: 'sources.list.udeb' is up to date.
Ign:1 copy: localudebs/ InRelease
Ign:2 copy: localudebs/ Release
Ign:3 copy: localudebs/ Packages
Ign:3 copy: localudebs/ Packages
Ign:3 copy: localudebs/ Packages
Get:3 copy: localudebs/ Packages [20 B]
Hit:4 http://cdn-fastly.deb.debian.org/debian unstable InRelease
Fetched 20 B in 1s (19 B/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Need to download: acpi-modules-5.3.0-1-amd64-di alsa-utils-udeb anna archdetect ata-modules-5.3.0-1-amd64-di bogl-bterm-udeb brltty-udeb busybox-udeb ca-certificates-udeb cdebconf-gtk-terminal cdebconf-gtk-udeb cdebconf-newt-terminal cdebconf-newt-udeb cdebconf-priority cdebconf-text-udeb cdebconf-udeb cdrom-checker cdrom-core-modules-5.3.0-1-amd64-di cdrom-detect cdrom-retriever console-setup-linux-fonts-udeb console-setup-pc-ekmap console-setup-udeb crc-modules-5.3.0-1-amd64-di di-utils di-utils-reboot di-utils-shell di-utils-terminfo env-preseed espeak-ng-data-udeb espeakup-udeb event-modules-5.3.0-1-amd64-di fat-modules-5.3.0-1-amd64-di fb-modules-5.3.0-1-amd64-di file-preseed firewire-core-modules-5.3.0-1-amd64-di fontconfig-udeb fonts-android-udeb fonts-dejavu-mono-udeb fonts-dejavu-udeb fonts-farsiweb-udeb fonts-freefont-udeb fonts-khmeros-udeb fonts-knda-udeb fonts-lao-udeb fonts-lohit-guru-udeb fonts-mlym-udeb fonts-noto-hinted-udeb fonts-sil-abyssinica-udeb fonts-sil-padauk-udeb fonts-taml-udeb fonts-telu-udeb fonts-thai-tlwg-udeb fonts-tibetan-machine-udeb fonts-ukij-uyghur-udeb gtk2-engines-udeb haveged-udeb hw-detect i2c-modules-5.3.0-1-amd64-di initrd-preseed input-modules-5.3.0-1-amd64-di installation-locale isofs-modules-5.3.0-1-amd64-di kbd-udeb kernel-image-5.3.0-1-amd64-di libasound2-udeb libatk-adaptor-udeb libatk-bridge-2.0-0-udeb libatk1.0-udeb libatspi0-udeb libblkid1-udeb libbsd0-udeb libc6-udeb libcairo2-udeb libcrypto1.1-udeb libdatrie1-udeb libdbus-1-3-udeb libdebconfclient0-udeb libdebian-installer4-udeb libdrm2-udeb libevdev2-udeb libexpat1-udeb libffi6-udeb libfontenc1-udeb libfreetype6-udeb libfribidi0-udeb libgail18-udeb libgdk-pixbuf2.0-0-udeb libglib2.0-udeb libgtk2.0-0-udeb libharfbuzz0-udeb libkmod2-udeb libmtdev1-udeb libnewt0.52-udeb libpango1.0-udeb libpci3-udeb libpciaccess0-udeb libpcre2-8-0-udeb libpcre3-udeb libpixman-1-0-udeb libpng16-16-udeb libslang2-udeb libssl1.1-udeb libtextwrap1-udeb libthai-data-udeb libthai0-udeb libtinfo6-udeb libudev1-udeb libuuid1-udeb libvte9-udeb libx11-6-udeb libxau6-udeb libxcb1-udeb libxcursor1-udeb libxdmcp6-udeb libxext6-udeb libxfixes3-udeb libxfont2-udeb libxft2-udeb libxi6-udeb libxinerama1-udeb libxkbfile1-udeb libxrender1-udeb libxshmfence1-udeb load-cdrom localechooser lowmemcheck main-menu media-retriever mmc-core-modules-5.3.0-1-amd64-di mmc-modules-5.3.0-1-amd64-di mountmedia mouse-modules-5.3.0-1-amd64-di nano-udeb pata-modules-5.3.0-1-amd64-di pciutils-udeb pcmcia-modules-5.3.0-1-amd64-di pcmcia-storage-modules-5.3.0-1-amd64-di pcmciautils-udeb preseed-common rescue-check rfkill-modules-5.3.0-1-amd64-di rootskel rootskel-gtk sata-modules-5.3.0-1-amd64-di save-logs scsi-core-modules-5.3.0-1-amd64-di scsi-modules-5.3.0-1-amd64-di serial-modules-5.3.0-1-amd64-di sound-modules-5.3.0-1-amd64-di speakup-modules-5.3.0-1-amd64-di udev-udeb udpkg uinput-modules-5.3.0-1-amd64-di usb-modules-5.3.0-1-amd64-di usb-serial-modules-5.3.0-1-amd64-di usb-storage-modules-5.3.0-1-amd64-di util-linux-udeb wget-udeb x11-xkb-utils-udeb xkb-data-udeb xserver-xorg-core-udeb xserver-xorg-input-evdev-udeb xserver-xorg-video-fbdev-udeb zlib1g-udeb
Reading package lists...
Building dependency tree...
haveged-udeb:amd64 Depends on libhavege2:amd64 < none @un H > (>= 1.9.8) can't be satisfied!
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
haveged-udeb : Depends: libhavege2 (>= 1.9.8) but it is not installable
E: Unable to correct problems, you have held broken packages.
make[9]: *** [Makefile:674: stamps/get_udebs-cdrom_gtk-stamp] Error 100
make[8]: *** [Makefile:298: _build] Error 2
make[7]: *** [Makefile:292: build_cdrom_gtk] Error 2
make[6]: *** [Makefile:298: _build] Error 2
make[5]: *** [Makefile:194: flavour_build] Error 2
make[4]: *** [Makefile:190: medium_build] Error 2
make[3]: *** [Makefile:186: subarch_build] Error 2
make[2]: *** [Makefile:182: all_build] Error 2
make[2]: Leaving directory '
make[1]: *** [debian/rules:46: build-images] Error 2
make[1]: Leaving directory '
make: *** [debian/rules:67: install] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit status 2
I: unmounting /var/lib/jenkins/jobs/d-i_build_debian-installer filesystem
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/20289 and its subdirectories
Tue 5 Nov 20:00:02 UTC 2019 - /srv/jenkins/bin/d-i_build.sh stopped running as /tmp/jenkins-script-5b99xid2, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 20:06:58 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 20:06:58 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3419
In-Reply-To: <515271839.95.1572977219296.JavaMail.jenkins@jenkins>
References: <515271839.95.1572977219296.JavaMail.jenkins@jenkins>
Message-ID: <953153136.107.1572984418111.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 20:07:52 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 20:07:52 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_ff64a #2937
Message-ID: <522233245.108.1572984472770.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ff64a-armhf-rb.debian.net (armhf ff64a) in workspace
[reproducible_maintenance_armhf_ff64a] $ /bin/sh -xe /tmp/jenkins15737580441281782243.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host ff64a-armhf-rb.debian.net port 2250: No route to host
Tue 5 Nov 20:06:50 UTC 2019 - ff64a-armhf-rb.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Tue Nov 5 20:15:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 20:15:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_bbx15 #13619
In-Reply-To: <341078030.103.1572980779799.JavaMail.jenkins@jenkins>
References: <341078030.103.1572980779799.JavaMail.jenkins@jenkins>
Message-ID: <1303895372.109.1572984904152.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 21:03:28 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 21:03:28 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_buster_install_full_desktop_upgrade_to_bullseye/16
In-Reply-To: <2146512545.33.1572021035514.JavaMail.jenkins@jenkins>
References: <2146512545.33.1572021035514.JavaMail.jenkins@jenkins>
Message-ID: <518010036.111.1572987808834.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_buster_install_full_desktop_upgrade_to_bullseye/16//console or just https://jenkins.debian.net/job/chroot-installation_buster_install_full_desktop_upgrade_to_bullseye/16/ for more information.
From jenkins at jenkins.debian.net Tue Nov 5 22:06:55 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 22:06:55 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3420
In-Reply-To: <953153136.107.1572984418111.JavaMail.jenkins@jenkins>
References: <953153136.107.1572984418111.JavaMail.jenkins@jenkins>
Message-ID: <1207766264.112.1572991615172.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Tue Nov 5 23:25:30 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 23:25:30 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_reverse_runner #293
In-Reply-To: <1386728045.101.1572980767112.JavaMail.jenkins@jenkins>
References: <1386728045.101.1572980767112.JavaMail.jenkins@jenkins>
Message-ID: <14189402.113.1572996330844.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 190.29 KB...]
Tue Nov 5 22:46:04 UTC 2019 - UNREPRODUCIBLE: wuzz_0.3.0-1+b12_amd64.deb (ea553a439261ee75a592e29d2516a1c9456712c6) only on ftp.debian.org.
Tue Nov 5 22:46:04 UTC 2019 - downloading .json for wukrainian_1.7.1-2_all.deb (ea553a439261ee75a592e29d2516a1c9456712c6) from buildinfo.debian.net
Tue Nov 5 22:46:34 UTC 2019 - UNREPRODUCIBLE: wukrainian_1.7.1-2_all.deb (22d7c5586fbc6cfcbc24b7d3883e95f8011631b6) only on ftp.debian.org.
Tue Nov 5 22:46:34 UTC 2019 - downloading .json for wsynth-dssi_0.1.3-4+b2_amd64.deb (22d7c5586fbc6cfcbc24b7d3883e95f8011631b6) from buildinfo.debian.net
Tue Nov 5 22:47:04 UTC 2019 - REPRODUCIBLE: wsynth-dssi_0.1.3-4+b2_amd64.deb (5eb943a794544fa1304fd8e5c6c34268b07607ee) - reproduced 17 times.
Tue Nov 5 22:47:05 UTC 2019 - downloading .json for wswiss_20161207-7_all.deb (5eb943a794544fa1304fd8e5c6c34268b07607ee) from buildinfo.debian.net
Tue Nov 5 22:47:34 UTC 2019 - UNREPRODUCIBLE: wswiss_20161207-7_all.deb (9cfec39be2af12e9ee2fdd90bd33b0b4c5a749c0) only on ftp.debian.org.
Tue Nov 5 22:47:35 UTC 2019 - downloading .json for wswedish_1.4.5-2.2_all.deb (9cfec39be2af12e9ee2fdd90bd33b0b4c5a749c0) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9cfec39be2af12e9ee2fdd90bd33b0b4c5a749c0
Tue Nov 5 22:48:06 UTC 2019 - UNREPRODUCIBLE: wswedish_1.4.5-2.2_all.deb (9000becbe56f02cc4ea4ebce8de4b8af41463516) only on ftp.debian.org.
Tue Nov 5 22:48:07 UTC 2019 - downloading .json for wspanish_1.0.28_all.deb (9000becbe56f02cc4ea4ebce8de4b8af41463516) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9000becbe56f02cc4ea4ebce8de4b8af41463516
Tue Nov 5 22:48:39 UTC 2019 - UNREPRODUCIBLE: wspanish_1.0.28_all.deb (ddd4cac797efa2ccc9640d7aa514b789f1a8e7e9) only on ftp.debian.org.
Tue Nov 5 22:48:39 UTC 2019 - downloading .json for wsl_0.2.1-1_all.deb (ddd4cac797efa2ccc9640d7aa514b789f1a8e7e9) from buildinfo.debian.net
Tue Nov 5 22:49:10 UTC 2019 - REPRODUCIBLE: wsl_0.2.1-1_all.deb (ae67818919559fa0a7b763be143f9ca17b598102) - reproduced 17 times.
Tue Nov 5 22:49:11 UTC 2019 - downloading .json for wsjtx-doc_2.0.0+repack-2_all.deb (ae67818919559fa0a7b763be143f9ca17b598102) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ae67818919559fa0a7b763be143f9ca17b598102
Tue Nov 5 22:49:43 UTC 2019 - UNREPRODUCIBLE: wsjtx-doc_2.0.0+repack-2_all.deb (dd455d50a0bb754ad1941a6619341f270ca3d949) only on ftp.debian.org.
Tue Nov 5 22:49:43 UTC 2019 - downloading .json for wsjtx-data_2.0.0+repack-2_all.deb (dd455d50a0bb754ad1941a6619341f270ca3d949) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/dd455d50a0bb754ad1941a6619341f270ca3d949
Tue Nov 5 22:50:16 UTC 2019 - UNREPRODUCIBLE: wsjtx-data_2.0.0+repack-2_all.deb (c2ee92c3b73b175e5518386668b20e5a081957ed) only on ftp.debian.org.
Tue Nov 5 22:50:16 UTC 2019 - downloading .json for wsjtx_2.0.0+repack-2_amd64.deb (c2ee92c3b73b175e5518386668b20e5a081957ed) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c2ee92c3b73b175e5518386668b20e5a081957ed
Tue Nov 5 22:50:48 UTC 2019 - UNREPRODUCIBLE: wsjtx_2.0.0+repack-2_amd64.deb (1dcd38c473ff9ed76c9c1a698b6bff44edb578a6) only on ftp.debian.org.
Tue Nov 5 22:50:49 UTC 2019 - downloading .json for wsclean-dev_2.6-1+b3_amd64.deb (1dcd38c473ff9ed76c9c1a698b6bff44edb578a6) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/1dcd38c473ff9ed76c9c1a698b6bff44edb578a6
Tue Nov 5 22:51:21 UTC 2019 - UNREPRODUCIBLE: wsclean-dev_2.6-1+b3_amd64.deb (5ed58e2435c92a8641ae874f6340e091d1fd6535) only on ftp.debian.org.
Tue Nov 5 22:51:22 UTC 2019 - downloading .json for wsclean_2.6-1+b3_amd64.deb (5ed58e2435c92a8641ae874f6340e091d1fd6535) from buildinfo.debian.net
Tue Nov 5 22:51:51 UTC 2019 - UNREPRODUCIBLE: wsclean_2.6-1+b3_amd64.deb (d72ad3a4b7eb0b5ffbe64679551b72d6558f7554) only on ftp.debian.org.
Tue Nov 5 22:51:52 UTC 2019 - downloading .json for writetype_1.3.163-1_all.deb (d72ad3a4b7eb0b5ffbe64679551b72d6558f7554) from buildinfo.debian.net
Tue Nov 5 22:52:21 UTC 2019 - UNREPRODUCIBLE: writetype_1.3.163-1_all.deb (581e70d9f7ffa53af2c8eb1c600d1796920553f7) only on ftp.debian.org.
Tue Nov 5 22:52:22 UTC 2019 - downloading .json for writer2latex-manual_1.4-8_all.deb (581e70d9f7ffa53af2c8eb1c600d1796920553f7) from buildinfo.debian.net
Tue Nov 5 22:52:51 UTC 2019 - UNREPRODUCIBLE: writer2latex-manual_1.4-8_all.deb (3d5a9f561c94106c31a923c4052eee4db0e9dd24) only on ftp.debian.org.
Tue Nov 5 22:52:52 UTC 2019 - downloading .json for writer2latex_1.4-8_all.deb (3d5a9f561c94106c31a923c4052eee4db0e9dd24) from buildinfo.debian.net
Tue Nov 5 22:53:21 UTC 2019 - UNREPRODUCIBLE: writer2latex_1.4-8_all.deb (7de35b01739e5223cb389bece3638b011e03fefa) only on ftp.debian.org.
Tue Nov 5 22:53:22 UTC 2019 - downloading .json for writeboost_1.20170616-1_all.deb (7de35b01739e5223cb389bece3638b011e03fefa) from buildinfo.debian.net
Tue Nov 5 22:53:52 UTC 2019 - REPRODUCIBLE: writeboost_1.20170616-1_all.deb (ede727a7bf2f2efb43cde4646910b1bb3bcd5ac7) - reproduced 141 times.
Tue Nov 5 22:53:53 UTC 2019 - downloading .json for wreport-common_3.15-1_amd64.deb (ede727a7bf2f2efb43cde4646910b1bb3bcd5ac7) from buildinfo.debian.net
Tue Nov 5 22:54:22 UTC 2019 - REPRODUCIBLE: wreport-common_3.15-1_amd64.deb (1df535a1f0c1f8e9f0baa859e53344e422d04a80) - reproduced 9 times.
Tue Nov 5 22:54:23 UTC 2019 - downloading .json for wrapsrv_1.0.0-1+b2_amd64.deb (1df535a1f0c1f8e9f0baa859e53344e422d04a80) from buildinfo.debian.net
Tue Nov 5 22:54:53 UTC 2019 - UNREPRODUCIBLE: wrapsrv_1.0.0-1+b2_amd64.deb (5d13b08e2da353f2ff155aeff58d59d4bd6a91b8) only on ftp.debian.org.
Tue Nov 5 22:54:54 UTC 2019 - downloading .json for wrapperfactory.app_0.1.0-5+b1_amd64.deb (5d13b08e2da353f2ff155aeff58d59d4bd6a91b8) from buildinfo.debian.net
Tue Nov 5 22:55:24 UTC 2019 - UNREPRODUCIBLE: wrapperfactory.app_0.1.0-5+b1_amd64.deb (d4be0a5469e33eadee0e2639d36c47ad34491a89) only on ftp.debian.org.
Tue Nov 5 22:55:25 UTC 2019 - downloading .json for wraplinux-dbg_1.7-8+b1_amd64.deb (d4be0a5469e33eadee0e2639d36c47ad34491a89) from buildinfo.debian.net
Tue Nov 5 22:55:54 UTC 2019 - UNREPRODUCIBLE: wraplinux-dbg_1.7-8+b1_amd64.deb (f26ef5db6e451e31cf05f19683349c005d64ad76) only on ftp.debian.org.
Tue Nov 5 22:55:55 UTC 2019 - downloading .json for wraplinux_1.7-8+b1_amd64.deb (f26ef5db6e451e31cf05f19683349c005d64ad76) from buildinfo.debian.net
Tue Nov 5 22:56:24 UTC 2019 - UNREPRODUCIBLE: wraplinux_1.7-8+b1_amd64.deb (9c9d1d8bcef4b1a345271b88418645d31dbe2a64) only on ftp.debian.org.
Tue Nov 5 22:56:25 UTC 2019 - downloading .json for wput_0.6.2+git20130413-8_amd64.deb (9c9d1d8bcef4b1a345271b88418645d31dbe2a64) from buildinfo.debian.net
Tue Nov 5 22:56:55 UTC 2019 - UNREPRODUCIBLE: wput_0.6.2+git20130413-8_amd64.deb (82e786a5d0596c7654742cbb48fafedf71a105df) only on ftp.debian.org.
Tue Nov 5 22:56:55 UTC 2019 - downloading .json for wps2odt_0.9.6-2_amd64.deb (82e786a5d0596c7654742cbb48fafedf71a105df) from buildinfo.debian.net
Tue Nov 5 22:57:25 UTC 2019 - REPRODUCIBLE: wps2odt_0.9.6-2_amd64.deb (c3c20935b5605b0e1760e077a218247360ff3f13) - reproduced 3 times.
Tue Nov 5 22:57:25 UTC 2019 - downloading .json for wps2epub_0.9.6-2_amd64.deb (c3c20935b5605b0e1760e077a218247360ff3f13) from buildinfo.debian.net
Tue Nov 5 22:57:54 UTC 2019 - UNREPRODUCIBLE: wps2epub_0.9.6-2_amd64.deb (5520e1a7c4ed5255f00c4712bb2105ce09eae9e2) only on ftp.debian.org.
Tue Nov 5 22:57:55 UTC 2019 - downloading .json for wportuguese_20171225-3_all.deb (5520e1a7c4ed5255f00c4712bb2105ce09eae9e2) from buildinfo.debian.net
Tue Nov 5 22:58:25 UTC 2019 - UNREPRODUCIBLE: wportuguese_20171225-3_all.deb (32882c065cab69dd46ef2b624ca1fcdf9147c258) only on ftp.debian.org.
Tue Nov 5 22:58:26 UTC 2019 - downloading .json for wpolish_20180621-1_all.deb (32882c065cab69dd46ef2b624ca1fcdf9147c258) from buildinfo.debian.net
Tue Nov 5 22:58:55 UTC 2019 - REPRODUCIBLE: wpolish_20180621-1_all.deb (986a48de2f3b86ecbfaf7a96229fbfbcc3d5dd45) - reproduced 17 times.
Tue Nov 5 22:58:56 UTC 2019 - downloading .json for wpg2odg_0.9.6-2_amd64.deb (986a48de2f3b86ecbfaf7a96229fbfbcc3d5dd45) from buildinfo.debian.net
Tue Nov 5 22:59:25 UTC 2019 - UNREPRODUCIBLE: wpg2odg_0.9.6-2_amd64.deb (daf379ab2d37be2ddda448c3bfa4d8ec6d777186) only on ftp.debian.org.
Tue Nov 5 22:59:26 UTC 2019 - downloading .json for wpd2odt_0.9.6-2_amd64.deb (daf379ab2d37be2ddda448c3bfa4d8ec6d777186) from buildinfo.debian.net
Tue Nov 5 22:59:57 UTC 2019 - UNREPRODUCIBLE: wpd2odt_0.9.6-2_amd64.deb (92d0ece9753796f8af6248b49e2b8c9b8e62b3dc) only on ftp.debian.org.
Tue Nov 5 22:59:57 UTC 2019 - downloading .json for wpd2epub_0.9.6-2_amd64.deb (92d0ece9753796f8af6248b49e2b8c9b8e62b3dc) from buildinfo.debian.net
Tue Nov 5 23:00:28 UTC 2019 - UNREPRODUCIBLE: wpd2epub_0.9.6-2_amd64.deb (671040d3beb8a78d4b377b84df4ecb9158ba395a) only on ftp.debian.org.
Tue Nov 5 23:00:28 UTC 2019 - downloading .json for wpasupplicant_2%3a2.7+git20190128+0c1e29f-6_amd64.deb (671040d3beb8a78d4b377b84df4ecb9158ba395a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/671040d3beb8a78d4b377b84df4ecb9158ba395a
Tue Nov 5 23:01:01 UTC 2019 - UNREPRODUCIBLE: wpasupplicant_2%3a2.7+git20190128+0c1e29f-6_amd64.deb (43a5de815a7393360cf907c91fdf1511c69b5997) only on ftp.debian.org.
Tue Nov 5 23:01:01 UTC 2019 - downloading .json for wpan-tools_0.9-1_amd64.deb (43a5de815a7393360cf907c91fdf1511c69b5997) from buildinfo.debian.net
Tue Nov 5 23:01:31 UTC 2019 - REPRODUCIBLE: wpan-tools_0.9-1_amd64.deb (4a110d3520a2debf2a02cf2f65acd9c27a59c666) - reproduced 3 times.
Tue Nov 5 23:01:32 UTC 2019 - downloading .json for wpagui_2%3a2.7+git20190128+0c1e29f-6_amd64.deb (4a110d3520a2debf2a02cf2f65acd9c27a59c666) from buildinfo.debian.net
Tue Nov 5 23:02:02 UTC 2019 - REPRODUCIBLE: wpagui_2%3a2.7+git20190128+0c1e29f-6_amd64.deb (c06b1938cf6545a50210f4b1857d45cd4902105a) - reproduced 2 times.
Tue Nov 5 23:02:02 UTC 2019 - downloading .json for wp2x_2.5-mhi-13_amd64.deb (c06b1938cf6545a50210f4b1857d45cd4902105a) from buildinfo.debian.net
Tue Nov 5 23:02:32 UTC 2019 - REPRODUCIBLE: wp2x_2.5-mhi-13_amd64.deb (f6472af7394edc2d5dc148e64587fed0ee7b42e0) - reproduced 3 times.
Tue Nov 5 23:02:32 UTC 2019 - downloading .json for wotsap_0.7-6_all.deb (f6472af7394edc2d5dc148e64587fed0ee7b42e0) from buildinfo.debian.net
Tue Nov 5 23:03:01 UTC 2019 - UNREPRODUCIBLE: wotsap_0.7-6_all.deb (e30e75e1b51c55939ca11c9b474499487c180453) only on ftp.debian.org.
Tue Nov 5 23:03:02 UTC 2019 - downloading .json for workrave-data_1.10.23-5_all.deb (e30e75e1b51c55939ca11c9b474499487c180453) from buildinfo.debian.net
Tue Nov 5 23:03:32 UTC 2019 - REPRODUCIBLE: workrave-data_1.10.23-5_all.deb (2958533f296cc42bde619673c058be9f1b2e34f1) - reproduced 231 times.
Tue Nov 5 23:03:33 UTC 2019 - downloading .json for workrave_1.10.23-5_amd64.deb (2958533f296cc42bde619673c058be9f1b2e34f1) from buildinfo.debian.net
Tue Nov 5 23:04:02 UTC 2019 - REPRODUCIBLE: workrave_1.10.23-5_amd64.deb (080b10412e63e36f60abb629345bc7d4597ad74e) - reproduced 23 times.
Tue Nov 5 23:04:03 UTC 2019 - downloading .json for worklog_2.0-1_amd64.deb (080b10412e63e36f60abb629345bc7d4597ad74e) from buildinfo.debian.net
Tue Nov 5 23:04:32 UTC 2019 - UNREPRODUCIBLE: worklog_2.0-1_amd64.deb (7350085fd7783334f177ee9dcc7f2d7148726058) only on ftp.debian.org.
Tue Nov 5 23:04:33 UTC 2019 - downloading .json for worker-data_3.15.4-1_all.deb (7350085fd7783334f177ee9dcc7f2d7148726058) from buildinfo.debian.net
Tue Nov 5 23:05:04 UTC 2019 - UNREPRODUCIBLE: worker-data_3.15.4-1_all.deb (5e4f6ede203ad6a319b0bb656aa2e12bb92f3bfb) only on ftp.debian.org.
Tue Nov 5 23:05:05 UTC 2019 - downloading .json for worker_3.15.4-1_amd64.deb (5e4f6ede203ad6a319b0bb656aa2e12bb92f3bfb) from buildinfo.debian.net
Tue Nov 5 23:05:34 UTC 2019 - REPRODUCIBLE: worker_3.15.4-1_amd64.deb (457d9e4fec10defde5edcdfdf6cc11d5f1e492d4) - reproduced 86 times.
Tue Nov 5 23:05:35 UTC 2019 - downloading .json for wordwarvi-sound_1.00+dfsg1-4_all.deb (457d9e4fec10defde5edcdfdf6cc11d5f1e492d4) from buildinfo.debian.net
Tue Nov 5 23:06:05 UTC 2019 - REPRODUCIBLE: wordwarvi-sound_1.00+dfsg1-4_all.deb (12ecc27092b086bf0a44747c0579eebc3fb14c9d) - reproduced 3 times.
Tue Nov 5 23:06:06 UTC 2019 - downloading .json for wordwarvi_1.00+dfsg1-4_amd64.deb (12ecc27092b086bf0a44747c0579eebc3fb14c9d) from buildinfo.debian.net
Tue Nov 5 23:06:35 UTC 2019 - UNREPRODUCIBLE: wordwarvi_1.00+dfsg1-4_amd64.deb (631643a711ecf5ad11983212544df4d36d91bd0c) only on ftp.debian.org.
Tue Nov 5 23:06:36 UTC 2019 - downloading .json for wordpress-xrds-simple_1.2-1_all.deb (631643a711ecf5ad11983212544df4d36d91bd0c) from buildinfo.debian.net
Tue Nov 5 23:07:06 UTC 2019 - UNREPRODUCIBLE: wordpress-xrds-simple_1.2-1_all.deb (e6363295eee9862cb9f352673a90e6f843915d86) only on ftp.debian.org.
Tue Nov 5 23:07:06 UTC 2019 - downloading .json for wordpress-theme-twentysixteen_5.0.4+dfsg1-1_all.deb (e6363295eee9862cb9f352673a90e6f843915d86) from buildinfo.debian.net
Tue Nov 5 23:07:36 UTC 2019 - UNREPRODUCIBLE: wordpress-theme-twentysixteen_5.0.4+dfsg1-1_all.deb (fe8180d36a2d31a43b79b6ea76120b90b77000c6) only on ftp.debian.org.
Tue Nov 5 23:07:37 UTC 2019 - downloading .json for wordpress-theme-twentyseventeen_5.0.4+dfsg1-1_all.deb (fe8180d36a2d31a43b79b6ea76120b90b77000c6) from buildinfo.debian.net
Tue Nov 5 23:08:08 UTC 2019 - REPRODUCIBLE: wordpress-theme-twentyseventeen_5.0.4+dfsg1-1_all.deb (112ae52a7de1090ecba4872bd3555d07087dedfb) - reproduced 27 times.
Tue Nov 5 23:08:08 UTC 2019 - downloading .json for wordpress-theme-twentynineteen_5.0.4+dfsg1-1_all.deb (112ae52a7de1090ecba4872bd3555d07087dedfb) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/112ae52a7de1090ecba4872bd3555d07087dedfb
Tue Nov 5 23:08:40 UTC 2019 - UNREPRODUCIBLE: wordpress-theme-twentynineteen_5.0.4+dfsg1-1_all.deb (3340e0dba1f3aaf2062c013e9b84d1ce0eefd95f) only on ftp.debian.org.
Tue Nov 5 23:08:41 UTC 2019 - downloading .json for wordpress-shibboleth_1.8-1_all.deb (3340e0dba1f3aaf2062c013e9b84d1ce0eefd95f) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/3340e0dba1f3aaf2062c013e9b84d1ce0eefd95f
Tue Nov 5 23:09:13 UTC 2019 - UNREPRODUCIBLE: wordpress-shibboleth_1.8-1_all.deb (a9a2bafdd92d6eecd7b2dfbbee51b708297f0231) only on ftp.debian.org.
Tue Nov 5 23:09:14 UTC 2019 - downloading .json for wordpress-l10n_5.0.4+dfsg1-1_all.deb (a9a2bafdd92d6eecd7b2dfbbee51b708297f0231) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/a9a2bafdd92d6eecd7b2dfbbee51b708297f0231
Tue Nov 5 23:09:46 UTC 2019 - UNREPRODUCIBLE: wordpress-l10n_5.0.4+dfsg1-1_all.deb (fcbe7335e064936dc96a32d3225e5b5e997375e6) only on ftp.debian.org.
Tue Nov 5 23:09:47 UTC 2019 - downloading .json for wordpress_5.0.4+dfsg1-1_all.deb (fcbe7335e064936dc96a32d3225e5b5e997375e6) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/fcbe7335e064936dc96a32d3225e5b5e997375e6
Tue Nov 5 23:10:19 UTC 2019 - UNREPRODUCIBLE: wordpress_5.0.4+dfsg1-1_all.deb (fbf6fdf09a2172b83d45dc909b15ca0f1e61de9f) only on ftp.debian.org.
Tue Nov 5 23:10:20 UTC 2019 - downloading .json for wordplay_7.22-21_amd64.deb (fbf6fdf09a2172b83d45dc909b15ca0f1e61de9f) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/fbf6fdf09a2172b83d45dc909b15ca0f1e61de9f
Tue Nov 5 23:10:53 UTC 2019 - UNREPRODUCIBLE: wordplay_7.22-21_amd64.deb (0b1d61c294ccdd360ed2c18dc35847e83b3066de) only on ftp.debian.org.
Tue Nov 5 23:10:53 UTC 2019 - downloading .json for wordnet-sense-index_1%3a3.0-35_all.deb (0b1d61c294ccdd360ed2c18dc35847e83b3066de) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/0b1d61c294ccdd360ed2c18dc35847e83b3066de
Tue Nov 5 23:11:26 UTC 2019 - UNREPRODUCIBLE: wordnet-sense-index_1%3a3.0-35_all.deb (faaf3329601d75b258cdf8b9dee640ded23b1324) only on ftp.debian.org.
Tue Nov 5 23:11:26 UTC 2019 - downloading .json for wordnet-gui_1%3a3.0-35_amd64.deb (faaf3329601d75b258cdf8b9dee640ded23b1324) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/faaf3329601d75b258cdf8b9dee640ded23b1324
Tue Nov 5 23:11:59 UTC 2019 - UNREPRODUCIBLE: wordnet-gui_1%3a3.0-35_amd64.deb (aaa525d54ebcf9507ca99066c1fe0a73c6eabaf1) only on ftp.debian.org.
Tue Nov 5 23:12:00 UTC 2019 - downloading .json for wordnet-grind_1%3a3.0-35_amd64.deb (aaa525d54ebcf9507ca99066c1fe0a73c6eabaf1) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/aaa525d54ebcf9507ca99066c1fe0a73c6eabaf1
Tue Nov 5 23:12:31 UTC 2019 - UNREPRODUCIBLE: wordnet-grind_1%3a3.0-35_amd64.deb (26df5d5cfce2c66a9a984e0b1acc637a7a279a3b) only on ftp.debian.org.
Tue Nov 5 23:12:32 UTC 2019 - downloading .json for wordnet-dev_1%3a3.0-35_amd64.deb (26df5d5cfce2c66a9a984e0b1acc637a7a279a3b) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/26df5d5cfce2c66a9a984e0b1acc637a7a279a3b
Tue Nov 5 23:13:03 UTC 2019 - UNREPRODUCIBLE: wordnet-dev_1%3a3.0-35_amd64.deb (08b4e791bf2db9d4cedcbfddac68407055402ef0) only on ftp.debian.org.
Tue Nov 5 23:13:04 UTC 2019 - downloading .json for wordnet-base_1%3a3.0-35_all.deb (08b4e791bf2db9d4cedcbfddac68407055402ef0) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/08b4e791bf2db9d4cedcbfddac68407055402ef0
Tue Nov 5 23:13:36 UTC 2019 - UNREPRODUCIBLE: wordnet-base_1%3a3.0-35_all.deb (5257594fa3d6b13f4fc903877070b25bbcec5ce1) only on ftp.debian.org.
Tue Nov 5 23:13:37 UTC 2019 - downloading .json for wordnet_1%3a3.0-35_amd64.deb (5257594fa3d6b13f4fc903877070b25bbcec5ce1) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5257594fa3d6b13f4fc903877070b25bbcec5ce1
Tue Nov 5 23:14:09 UTC 2019 - UNREPRODUCIBLE: wordnet_1%3a3.0-35_amd64.deb (c7a7608d97f258f58ea797762535f63cbad2ae82) only on ftp.debian.org.
Tue Nov 5 23:14:10 UTC 2019 - downloading .json for wordgrinder-x11_0.7.2-1_amd64.deb (c7a7608d97f258f58ea797762535f63cbad2ae82) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/c7a7608d97f258f58ea797762535f63cbad2ae82
Tue Nov 5 23:14:42 UTC 2019 - UNREPRODUCIBLE: wordgrinder-x11_0.7.2-1_amd64.deb (93471b48f89a45adb730d93fbf2b55c67d24df8a) only on ftp.debian.org.
Tue Nov 5 23:14:43 UTC 2019 - downloading .json for wordgrinder-ncurses_0.7.2-1_amd64.deb (93471b48f89a45adb730d93fbf2b55c67d24df8a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/93471b48f89a45adb730d93fbf2b55c67d24df8a
Tue Nov 5 23:15:15 UTC 2019 - UNREPRODUCIBLE: wordgrinder-ncurses_0.7.2-1_amd64.deb (49c467e23c9fba9f691c5d7ee10c157a2617e59c) only on ftp.debian.org.
Tue Nov 5 23:15:16 UTC 2019 - downloading .json for wordgrinder-doc_0.7.2-1_all.deb (49c467e23c9fba9f691c5d7ee10c157a2617e59c) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/49c467e23c9fba9f691c5d7ee10c157a2617e59c
Tue Nov 5 23:15:48 UTC 2019 - UNREPRODUCIBLE: wordgrinder-doc_0.7.2-1_all.deb (a8e38cd9adbef7527009783d2b34e02a97fcda05) only on ftp.debian.org.
Tue Nov 5 23:15:49 UTC 2019 - downloading .json for wordgrinder_0.7.2-1_all.deb (a8e38cd9adbef7527009783d2b34e02a97fcda05) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/a8e38cd9adbef7527009783d2b34e02a97fcda05
Tue Nov 5 23:16:21 UTC 2019 - UNREPRODUCIBLE: wordgrinder_0.7.2-1_all.deb (80459d3291666670e6f9632434dd1a129cb1fe04) only on ftp.debian.org.
Tue Nov 5 23:16:22 UTC 2019 - downloading .json for woof_20091227-2.1_all.deb (80459d3291666670e6f9632434dd1a129cb1fe04) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/80459d3291666670e6f9632434dd1a129cb1fe04
Tue Nov 5 23:16:54 UTC 2019 - UNREPRODUCIBLE: woof_20091227-2.1_all.deb (44b3a2e39fc96c4a686cecc92168bdb46723c91a) only on ftp.debian.org.
Tue Nov 5 23:16:55 UTC 2019 - downloading .json for wondershaper_1.1a-10_all.deb (44b3a2e39fc96c4a686cecc92168bdb46723c91a) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/44b3a2e39fc96c4a686cecc92168bdb46723c91a
Tue Nov 5 23:17:27 UTC 2019 - UNREPRODUCIBLE: wondershaper_1.1a-10_all.deb (bbfb9b9b3ddca3f8dc9e01e1cab4fffcca3355c0) only on ftp.debian.org.
Tue Nov 5 23:17:28 UTC 2019 - downloading .json for wogerman_1%3a2-35_all.deb (bbfb9b9b3ddca3f8dc9e01e1cab4fffcca3355c0) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/bbfb9b9b3ddca3f8dc9e01e1cab4fffcca3355c0
Tue Nov 5 23:18:01 UTC 2019 - UNREPRODUCIBLE: wogerman_1%3a2-35_all.deb (3948082d5ae3f7f24757ac71cca80cae11725de2) only on ftp.debian.org.
Tue Nov 5 23:18:01 UTC 2019 - downloading .json for woff2_1.0.2-1_amd64.deb (3948082d5ae3f7f24757ac71cca80cae11725de2) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/3948082d5ae3f7f24757ac71cca80cae11725de2
Tue Nov 5 23:18:34 UTC 2019 - UNREPRODUCIBLE: woff2_1.0.2-1_amd64.deb (4e1d97b96222dd10d53eb813c12dd861f49b308d) only on ftp.debian.org.
Tue Nov 5 23:18:34 UTC 2019 - downloading .json for woff-tools_0%3a2009.10.04-2+b1_amd64.deb (4e1d97b96222dd10d53eb813c12dd861f49b308d) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/4e1d97b96222dd10d53eb813c12dd861f49b308d
Tue Nov 5 23:19:07 UTC 2019 - UNREPRODUCIBLE: woff-tools_0%3a2009.10.04-2+b1_amd64.deb (7503dfcb764d0558d77b609c27655e642754cda9) only on ftp.debian.org.
Tue Nov 5 23:19:08 UTC 2019 - downloading .json for wodim_9%3a1.1.11-3+b2_amd64.deb (7503dfcb764d0558d77b609c27655e642754cda9) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/7503dfcb764d0558d77b609c27655e642754cda9
Tue Nov 5 23:19:40 UTC 2019 - UNREPRODUCIBLE: wodim_9%3a1.1.11-3+b2_amd64.deb (9d866f9a1890b93b39aa8b508ef01a8d6816b6ff) only on ftp.debian.org.
Tue Nov 5 23:19:41 UTC 2019 - downloading .json for wnorwegian_2.2-4_all.deb (9d866f9a1890b93b39aa8b508ef01a8d6816b6ff) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/9d866f9a1890b93b39aa8b508ef01a8d6816b6ff
Tue Nov 5 23:20:13 UTC 2019 - UNREPRODUCIBLE: wnorwegian_2.2-4_all.deb (47251d34c655b26a3464abaa1eeace289d660158) only on ftp.debian.org.
Tue Nov 5 23:20:14 UTC 2019 - downloading .json for wngerman_20161207-7_all.deb (47251d34c655b26a3464abaa1eeace289d660158) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/47251d34c655b26a3464abaa1eeace289d660158
Tue Nov 5 23:20:46 UTC 2019 - UNREPRODUCIBLE: wngerman_20161207-7_all.deb (e9efc629ac8b12223169bc4d3c17339c814b6793) only on ftp.debian.org.
Tue Nov 5 23:20:47 UTC 2019 - downloading .json for wmxres_1.2-10.1_amd64.deb (e9efc629ac8b12223169bc4d3c17339c814b6793) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/e9efc629ac8b12223169bc4d3c17339c814b6793
Tue Nov 5 23:21:19 UTC 2019 - UNREPRODUCIBLE: wmxres_1.2-10.1_amd64.deb (53941b0dd0ae042ab8af8b212a41e4a993335572) only on ftp.debian.org.
Tue Nov 5 23:21:20 UTC 2019 - downloading .json for wmxmms2_0.6+repack-2_amd64.deb (53941b0dd0ae042ab8af8b212a41e4a993335572) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/53941b0dd0ae042ab8af8b212a41e4a993335572
Tue Nov 5 23:21:52 UTC 2019 - UNREPRODUCIBLE: wmxmms2_0.6+repack-2_amd64.deb (3b4e0784559d7ca31880202ce3136bfff048c40b) only on ftp.debian.org.
Tue Nov 5 23:21:53 UTC 2019 - downloading .json for wmwork_0.2.6-2+b1_amd64.deb (3b4e0784559d7ca31880202ce3136bfff048c40b) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/3b4e0784559d7ca31880202ce3136bfff048c40b
Tue Nov 5 23:22:25 UTC 2019 - UNREPRODUCIBLE: wmwork_0.2.6-2+b1_amd64.deb (f5467bb381f22e640cf22c5eba9b1137dba82c12) only on ftp.debian.org.
Tue Nov 5 23:22:26 UTC 2019 - downloading .json for wmweather+_2.17-1_amd64.deb (f5467bb381f22e640cf22c5eba9b1137dba82c12) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/f5467bb381f22e640cf22c5eba9b1137dba82c12
Tue Nov 5 23:22:59 UTC 2019 - UNREPRODUCIBLE: wmweather+_2.17-1_amd64.deb (5a7835d0d71b5c68be95563304b36a5eb0e650c1) only on ftp.debian.org.
Tue Nov 5 23:22:59 UTC 2019 - downloading .json for wmweather_2.4.7-1_amd64.deb (5a7835d0d71b5c68be95563304b36a5eb0e650c1) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/5a7835d0d71b5c68be95563304b36a5eb0e650c1
Tue Nov 5 23:23:32 UTC 2019 - UNREPRODUCIBLE: wmweather_2.4.7-1_amd64.deb (ae6fb9983379229de16e1d0e2f152ee01cf5e4ed) only on ftp.debian.org.
Tue Nov 5 23:23:32 UTC 2019 - downloading .json for wmwave_0.4-10+b1_amd64.deb (ae6fb9983379229de16e1d0e2f152ee01cf5e4ed) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/ae6fb9983379229de16e1d0e2f152ee01cf5e4ed
Tue Nov 5 23:24:05 UTC 2019 - UNREPRODUCIBLE: wmwave_0.4-10+b1_amd64.deb (863237be0430c6bf651c67e1fb52ce245b4ac547) only on ftp.debian.org.
Tue Nov 5 23:24:05 UTC 2019 - downloading .json for wmtop_0.85-1_amd64.deb (863237be0430c6bf651c67e1fb52ce245b4ac547) from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/863237be0430c6bf651c67e1fb52ce245b4ac547
Tue Nov 5 23:24:38 UTC 2019 - UNREPRODUCIBLE: wmtop_0.85-1_amd64.deb (c06d4dc9ee549b0186d80a991a7e41aa7291fb4f) only on ftp.debian.org.
Tue Nov 5 23:24:39 UTC 2019 - downloading .json for wmtime_1.4-1+b1_amd64.deb (c06d4dc9ee549b0186d80a991a7e41aa7291fb4f) from buildinfo.debian.net
Tue Nov 5 23:25:10 UTC 2019 - UNREPRODUCIBLE: wmtime_1.4-1+b1_amd64.deb (1f3797ce6d3291c6e8198b86fb70f1d3aa18a9ce) only on ftp.debian.org.
Tue Nov 5 23:25:10 UTC 2019 - downloading .json for wmtemp_0.0.6-3.3+b3_amd64.deb (1f3797ce6d3291c6e8198b86fb70f1d3aa18a9ce) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins6386095516557312312.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_reverse_runner #293
From jenkins at jenkins.debian.net Tue Nov 5 23:35:30 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 23:35:30 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_armhf_opi2c #13273
Message-ID: <2113102922.114.1572996931074.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 6.57 KB...]
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/buster-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/23272 and its subdirectories
Tue Nov 5 22:11:51 UTC 2019 - updating the bullseye/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease [109 kB]
Fetched 109 kB in 1s (105 kB/s)
Reading package lists...
Tue Nov 5 22:12:07 UTC 2019 - updating pbuilder for bullseye/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 22:12:08 UTC 2019
I: pbuilder-time-stamp: 1572991928
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Get:1 http://cdn-fastly.deb.debian.org/debian bullseye InRelease [109 kB]
Fetched 109 kB in 1s (88.4 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/bullseye-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/25199 and its subdirectories
Tue Nov 5 22:15:00 UTC 2019 - updating the unstable/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main Sources.diff/Index [27.9 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages.diff/Index [27.9 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en.diff/Index [27.9 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-05-2016.59.pdiff [11.6 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian unstable/main Sources 2019-11-05-2016.59.pdiff [11.6 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-05-2016.59.pdiff [506 B]
Get:7 http://cdn-fastly.deb.debian.org/debian unstable/main Translation-en 2019-11-05-2016.59.pdiff [506 B]
Fetched 275 kB in 24s (11.3 kB/s)
Reading package lists...
Tue Nov 5 22:15:37 UTC 2019 - updating pbuilder for unstable/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 22:15:38 UTC 2019
I: pbuilder-time-stamp: 1572992138
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Get:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Hit:2 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Get:3 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages.diff/Index [27.9 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Fetched 207 kB in 14s (14.4 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/28498 and its subdirectories
Tue Nov 5 22:19:18 UTC 2019 - updating the experimental/armhf chdist now.
Get:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease [72.2 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian experimental/main Sources.diff/Index [27.8 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages.diff/Index [27.8 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en.diff/Index [27.8 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-2016.59.pdiff [3816 B]
Get:6 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-2016.59.pdiff [5423 B]
Get:5 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-2016.59.pdiff [3816 B]
Get:6 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-2016.59.pdiff [5423 B]
Get:7 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-05-2016.59.pdiff [6711 B]
Get:7 http://cdn-fastly.deb.debian.org/debian experimental/main Translation-en 2019-11-05-2016.59.pdiff [6711 B]
Fetched 172 kB in 2s (97.6 kB/s)
Reading package lists...
Tue Nov 5 22:19:22 UTC 2019 - updating pbuilder for experimental/armhf now.
W: /root/.pbuilderrc does not exist
I: Current time: Tue Nov 5 22:19:23 UTC 2019
I: pbuilder-time-stamp: 1572992363
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Get:1 http://cdn-fastly.deb.debian.org/debian experimental InRelease [72.2 kB]
Hit:3 http://tests.reproducible-builds.org/debian/repository/debian ./ InRelease
Get:2 http://cdn-fastly.deb.debian.org/debian unstable InRelease [139 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian experimental/main Sources.diff/Index [27.8 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages.diff/Index [27.8 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-2016.59.pdiff [3816 B]
Get:6 http://cdn-fastly.deb.debian.org/debian experimental/main Sources 2019-11-05-2016.59.pdiff [3816 B]
Get:7 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-2016.59.pdiff [5423 B]
Get:7 http://cdn-fastly.deb.debian.org/debian experimental/main armhf Packages 2019-11-05-2016.59.pdiff [5423 B]
Get:8 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages.diff/Index [27.9 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian unstable/main armhf Packages 2019-11-05-2016.59.pdiff [40.2 kB]
Fetched 344 kB in 18s (19.1 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/experimental-reproducible-base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/31160 and its subdirectories
Tue Nov 5 22:22:57 UTC 2019 - Removing schroot sessions older than 3 days.
Tue Nov 5 22:22:57 UTC 2019 - Removing schroots older than 3 days.
Tue Nov 5 22:22:57 UTC 2019 - Detecting schroots older than 1 month
Tue Nov 5 22:22:57 UTC 2019 - Looking for processes which should not be there.
Tue Nov 5 22:22:59 UTC 2019 - Checking for artifacts older than a day.
Tue Nov 5 22:22:59 UTC 2019 - Checking for files with bad permissions.
Tue Nov 5 22:22:59 UTC 2019 - the end.
Tue 5 Nov 22:22:59 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-M70SLLo3, which will now be removed.
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'opi2c-armhf-rb.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins16290056810253091743.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on opi2c-armhf-rb.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_maintenance_armhf_opi2c #13273
From jenkins at jenkins.debian.net Tue Nov 5 23:37:55 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Tue, 5 Nov 2019 23:37:55 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_compare_Debian_sha1sums_reverse_runner #294
In-Reply-To: <14189402.113.1572996330844.JavaMail.jenkins@jenkins>
References: <14189402.113.1572996330844.JavaMail.jenkins@jenkins>
Message-ID: <1130848884.115.1572997075426.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 82.34 KB...]
Tue Nov 5 23:35:40 UTC 2019 - not updating data about xavante-doc_2.3.0-1_all.deb
Tue Nov 5 23:35:41 UTC 2019 - not updating data about xavante_2.3.0-1_all.deb
Tue Nov 5 23:35:41 UTC 2019 - not updating data about xautomation_1.09-2_amd64.deb
Tue Nov 5 23:35:42 UTC 2019 - not updating data about xautolock_1%3a2.2-5.1+b1_amd64.deb
Tue Nov 5 23:35:43 UTC 2019 - not updating data about xauth_1%3a1.0.10-1_amd64.deb
Tue Nov 5 23:35:43 UTC 2019 - not updating data about xattr_0.9.6-1_amd64.deb
Tue Nov 5 23:35:44 UTC 2019 - not updating data about xastir-data_2.1.0-5_amd64.deb
Tue Nov 5 23:35:44 UTC 2019 - not updating data about xastir_2.1.0-5_amd64.deb
Tue Nov 5 23:35:45 UTC 2019 - not updating data about xarclock_1.0-15_amd64.deb
Tue Nov 5 23:35:45 UTC 2019 - not updating data about xarchiver_1%3a0.5.4.14-1_amd64.deb
Tue Nov 5 23:35:46 UTC 2019 - not updating data about xapps-doc_1.2.2-1_all.deb
Tue Nov 5 23:35:47 UTC 2019 - not updating data about xapps-common_1.2.2-1_all.deb
Tue Nov 5 23:35:47 UTC 2019 - not updating data about xapian-tools_1.4.11-1_amd64.deb
Tue Nov 5 23:35:48 UTC 2019 - not updating data about xapian-omega_1.4.11-1_amd64.deb
Tue Nov 5 23:35:48 UTC 2019 - not updating data about xapian-examples_1.4.11-1_amd64.deb
Tue Nov 5 23:35:49 UTC 2019 - not updating data about xapian-doc_1.4.11-1_all.deb
Tue Nov 5 23:35:49 UTC 2019 - not updating data about xapers_0.8.2-1.1_all.deb
Tue Nov 5 23:35:50 UTC 2019 - not updating data about xaos_3.5+ds1-3.1+b3_amd64.deb
Tue Nov 5 23:35:51 UTC 2019 - not updating data about xandikos_0.0.11-2_all.deb
Tue Nov 5 23:35:51 UTC 2019 - not updating data about xalan_1.11-9_amd64.deb
Tue Nov 5 23:35:52 UTC 2019 - not updating data about xabacus_8.2.1-1_amd64.deb
Tue Nov 5 23:35:52 UTC 2019 - not updating data about xa65_2.3.8-2_amd64.deb
Tue Nov 5 23:35:53 UTC 2019 - not updating data about x86info_1.31~pre0.8052aabdd159bc9050e7dc264f33782c5acce05f-1+b1_amd64.deb
Tue Nov 5 23:35:54 UTC 2019 - not updating data about x86dis_0.23-6+b1_amd64.deb
Tue Nov 5 23:35:54 UTC 2019 - not updating data about x509-util_1.6.4-2_amd64.deb
Tue Nov 5 23:35:55 UTC 2019 - not updating data about x4d-icons_1.2-1_all.deb
Tue Nov 5 23:35:55 UTC 2019 - not updating data about x42-plugins_20180803-1_amd64.deb
Tue Nov 5 23:35:56 UTC 2019 - not updating data about x3270-doc_3.6ga4-3_all.deb
Tue Nov 5 23:35:56 UTC 2019 - not updating data about x3270_3.6ga4-3+b1_amd64.deb
Tue Nov 5 23:35:57 UTC 2019 - not updating data about x2x_1.30-7_amd64.deb
Tue Nov 5 23:35:58 UTC 2019 - not updating data about x2vnc_1.7.2-6_amd64.deb
Tue Nov 5 23:35:58 UTC 2019 - not updating data about x2goserver-xsession_4.1.0.3-4_all.deb
Tue Nov 5 23:35:59 UTC 2019 - not updating data about x2goserver-x2goagent_4.1.0.3-4_amd64.deb
Tue Nov 5 23:35:59 UTC 2019 - not updating data about x2goserver-printing_4.1.0.3-4_all.deb
Tue Nov 5 23:36:00 UTC 2019 - not updating data about x2goserver-fmbindings_4.1.0.3-4_all.deb
Tue Nov 5 23:36:00 UTC 2019 - not updating data about x2goserver-extensions_4.1.0.3-4_all.deb
Tue Nov 5 23:36:01 UTC 2019 - not updating data about x2goserver-desktopsharing_4.1.0.3-4_amd64.deb
Tue Nov 5 23:36:02 UTC 2019 - not updating data about x2goserver-common_4.1.0.3-4_amd64.deb
Tue Nov 5 23:36:02 UTC 2019 - not updating data about x2goserver_4.1.0.3-4_amd64.deb
Tue Nov 5 23:36:03 UTC 2019 - not updating data about x2godesktopsharing_3.2.0.0-2_amd64.deb
Tue Nov 5 23:36:03 UTC 2019 - not updating data about x2goclient_4.1.2.1-2_amd64.deb
Tue Nov 5 23:36:04 UTC 2019 - not updating data about x2gobroker-wsgi_0.0.4.1-1_all.deb
Tue Nov 5 23:36:04 UTC 2019 - not updating data about x2gobroker-ssh_0.0.4.1-1_amd64.deb
Tue Nov 5 23:36:05 UTC 2019 - not updating data about x2gobroker-loadchecker_0.0.4.1-1_all.deb
Tue Nov 5 23:36:06 UTC 2019 - not updating data about x2gobroker-daemon_0.0.4.1-1_all.deb
Tue Nov 5 23:36:06 UTC 2019 - not updating data about x2gobroker-common_0.0.4.1-1_all.deb
Tue Nov 5 23:36:07 UTC 2019 - not updating data about x2gobroker-authservice_0.0.4.1-1_all.deb
Tue Nov 5 23:36:07 UTC 2019 - not updating data about x2gobroker-agent_0.0.4.1-1_amd64.deb
Tue Nov 5 23:36:08 UTC 2019 - not updating data about x2gobroker_0.0.4.1-1_all.deb
Tue Nov 5 23:36:09 UTC 2019 - not updating data about x265_2.9-4_amd64.deb
Tue Nov 5 23:36:09 UTC 2019 - not updating data about x264_2%3a0.155.2917+git0a84d98-2_amd64.deb
Tue Nov 5 23:36:10 UTC 2019 - not updating data about x11vnc-data_0.9.13-6_all.deb
Tue Nov 5 23:36:10 UTC 2019 - not updating data about x11vnc_0.9.13-6_amd64.deb
Tue Nov 5 23:36:11 UTC 2019 - not updating data about x11proto-xinerama-dev_2018.4-4_all.deb
Tue Nov 5 23:36:11 UTC 2019 - not updating data about x11proto-xf86vidmode-dev_2018.4-4_all.deb
Tue Nov 5 23:36:12 UTC 2019 - not updating data about x11proto-xf86dri-dev_2018.4-4_all.deb
Tue Nov 5 23:36:13 UTC 2019 - not updating data about x11proto-xf86dga-dev_2018.4-4_all.deb
Tue Nov 5 23:36:13 UTC 2019 - not updating data about x11proto-xf86bigfont-dev_2018.4-4_all.deb
Tue Nov 5 23:36:14 UTC 2019 - not updating data about x11proto-xext-dev_2018.4-4_all.deb
Tue Nov 5 23:36:14 UTC 2019 - not updating data about x11proto-xcmisc-dev_2018.4-4_all.deb
Tue Nov 5 23:36:15 UTC 2019 - not updating data about x11proto-video-dev_2018.4-4_all.deb
Tue Nov 5 23:36:15 UTC 2019 - not updating data about x11proto-scrnsaver-dev_2018.4-4_all.deb
Tue Nov 5 23:36:16 UTC 2019 - not updating data about x11proto-resource-dev_2018.4-4_all.deb
Tue Nov 5 23:36:17 UTC 2019 - not updating data about x11proto-render-dev_2%3a2018.4-4_all.deb
Tue Nov 5 23:36:17 UTC 2019 - not updating data about x11proto-record-dev_2018.4-4_all.deb
Tue Nov 5 23:36:18 UTC 2019 - not updating data about x11proto-randr-dev_2018.4-4_all.deb
Tue Nov 5 23:36:18 UTC 2019 - not updating data about x11proto-present-dev_2018.4-4_all.deb
Tue Nov 5 23:36:19 UTC 2019 - not updating data about x11proto-kb-dev_2018.4-4_all.deb
Tue Nov 5 23:36:20 UTC 2019 - not updating data about x11proto-input-dev_2018.4-4_all.deb
Tue Nov 5 23:36:20 UTC 2019 - not updating data about x11proto-gl-dev_2018.4-4_all.deb
Tue Nov 5 23:36:21 UTC 2019 - not updating data about x11proto-fonts-dev_2018.4-4_all.deb
Tue Nov 5 23:36:21 UTC 2019 - not updating data about x11proto-fixes-dev_1%3a2018.4-4_all.deb
Tue Nov 5 23:36:22 UTC 2019 - not updating data about x11proto-dri3-dev_2018.4-4_all.deb
Tue Nov 5 23:36:22 UTC 2019 - not updating data about x11proto-dri2-dev_2018.4-4_all.deb
Tue Nov 5 23:36:23 UTC 2019 - not updating data about x11proto-dmx-dev_1%3a2018.4-4_all.deb
Tue Nov 5 23:36:24 UTC 2019 - not updating data about x11proto-dev_2018.4-4_all.deb
Tue Nov 5 23:36:24 UTC 2019 - not updating data about x11proto-damage-dev_1%3a2018.4-4_all.deb
Tue Nov 5 23:36:25 UTC 2019 - not updating data about x11proto-core-dev_2018.4-4_all.deb
Tue Nov 5 23:36:25 UTC 2019 - not updating data about x11proto-composite-dev_1%3a2018.4-4_all.deb
Tue Nov 5 23:36:26 UTC 2019 - not updating data about x11proto-bigreqs-dev_1%3a2018.4-4_all.deb
Tue Nov 5 23:36:26 UTC 2019 - not updating data about x11-xserver-utils_7.7+8_amd64.deb
Tue Nov 5 23:36:27 UTC 2019 - not updating data about x11-xkb-utils_7.7+4_amd64.deb
Tue Nov 5 23:36:28 UTC 2019 - not updating data about x11-xfs-utils_7.7+2+b1_amd64.deb
Tue Nov 5 23:36:28 UTC 2019 - not updating data about x11-utils_7.7+4_amd64.deb
Tue Nov 5 23:36:29 UTC 2019 - not updating data about x11-touchscreen-calibrator_0.2-2_amd64.deb
Tue Nov 5 23:36:29 UTC 2019 - not updating data about x11-session-utils_7.7+3_amd64.deb
Tue Nov 5 23:36:30 UTC 2019 - not updating data about x11-common_1%3a7.7+19_all.deb
Tue Nov 5 23:36:30 UTC 2019 - not updating data about x11-apps_7.7+7_amd64.deb
Tue Nov 5 23:36:31 UTC 2019 - not updating data about x-face-el_1.3.6.24-17_all.deb
Tue Nov 5 23:36:32 UTC 2019 - not updating data about wzip_1.1.5_amd64.deb
Tue Nov 5 23:36:32 UTC 2019 - not updating data about wyrd_1.4.6-4+b2_amd64.deb
Tue Nov 5 23:36:33 UTC 2019 - not updating data about wxsqlite3-doc_3.4.1~dfsg-3_all.deb
Tue Nov 5 23:36:33 UTC 2019 - not updating data about wxmaxima_19.01.2-1_amd64.deb
Tue Nov 5 23:36:34 UTC 2019 - not updating data about wxhexeditor_0.23+repack-3_amd64.deb
Tue Nov 5 23:36:35 UTC 2019 - not updating data about wxglade_0.8.3-2_all.deb
Tue Nov 5 23:36:35 UTC 2019 - not updating data about wxastrocapture_1.8.1+git20140821+dfsg-2_amd64.deb
Tue Nov 5 23:36:36 UTC 2019 - not updating data about wx3.0-i18n_3.0.4+dfsg-8_all.deb
Tue Nov 5 23:36:36 UTC 2019 - not updating data about wx3.0-headers_3.0.4+dfsg-8_all.deb
Tue Nov 5 23:36:37 UTC 2019 - not updating data about wx3.0-examples_3.0.4+dfsg-8_all.deb
Tue Nov 5 23:36:37 UTC 2019 - not updating data about wx3.0-doc_3.0.4+dfsg-8_all.deb
Tue Nov 5 23:36:38 UTC 2019 - not updating data about wx-common_3.0.4+dfsg-8_amd64.deb
Tue Nov 5 23:36:39 UTC 2019 - not updating data about wwwconfig-common_0.3.0_all.deb
Tue Nov 5 23:36:39 UTC 2019 - not updating data about wwl_1.3+db-2+b1_amd64.deb
Tue Nov 5 23:36:40 UTC 2019 - not updating data about wvdial_1.61-5_amd64.deb
Tue Nov 5 23:36:40 UTC 2019 - not updating data about wv_1.2.9-4.2+b2_amd64.deb
Tue Nov 5 23:36:41 UTC 2019 - not updating data about wuzzah_0.53-3_amd64.deb
Tue Nov 5 23:36:41 UTC 2019 - not updating data about wuzz_0.3.0-1+b12_amd64.deb
Tue Nov 5 23:36:42 UTC 2019 - not updating data about wukrainian_1.7.1-2_all.deb
Tue Nov 5 23:36:43 UTC 2019 - not updating data about wsynth-dssi_0.1.3-4+b2_amd64.deb
Tue Nov 5 23:36:43 UTC 2019 - not updating data about wswiss_20161207-7_all.deb
Tue Nov 5 23:36:44 UTC 2019 - not updating data about wswedish_1.4.5-2.2_all.deb
Tue Nov 5 23:36:44 UTC 2019 - not updating data about wspanish_1.0.28_all.deb
Tue Nov 5 23:36:45 UTC 2019 - not updating data about wsl_0.2.1-1_all.deb
Tue Nov 5 23:36:45 UTC 2019 - not updating data about wsjtx-doc_2.0.0+repack-2_all.deb
Tue Nov 5 23:36:46 UTC 2019 - not updating data about wsjtx-data_2.0.0+repack-2_all.deb
Tue Nov 5 23:36:47 UTC 2019 - not updating data about wsjtx_2.0.0+repack-2_amd64.deb
Tue Nov 5 23:36:47 UTC 2019 - not updating data about wsclean-dev_2.6-1+b3_amd64.deb
Tue Nov 5 23:36:48 UTC 2019 - not updating data about wsclean_2.6-1+b3_amd64.deb
Tue Nov 5 23:36:48 UTC 2019 - not updating data about writetype_1.3.163-1_all.deb
Tue Nov 5 23:36:49 UTC 2019 - not updating data about writer2latex-manual_1.4-8_all.deb
Tue Nov 5 23:36:50 UTC 2019 - not updating data about writer2latex_1.4-8_all.deb
Tue Nov 5 23:36:50 UTC 2019 - not updating data about writeboost_1.20170616-1_all.deb
Tue Nov 5 23:36:51 UTC 2019 - not updating data about wreport-common_3.15-1_amd64.deb
Tue Nov 5 23:36:51 UTC 2019 - not updating data about wrapsrv_1.0.0-1+b2_amd64.deb
Tue Nov 5 23:36:52 UTC 2019 - not updating data about wrapperfactory.app_0.1.0-5+b1_amd64.deb
Tue Nov 5 23:36:52 UTC 2019 - not updating data about wraplinux-dbg_1.7-8+b1_amd64.deb
Tue Nov 5 23:36:53 UTC 2019 - not updating data about wraplinux_1.7-8+b1_amd64.deb
Tue Nov 5 23:36:54 UTC 2019 - not updating data about wput_0.6.2+git20130413-8_amd64.deb
Tue Nov 5 23:36:54 UTC 2019 - not updating data about wps2odt_0.9.6-2_amd64.deb
Tue Nov 5 23:36:55 UTC 2019 - not updating data about wps2epub_0.9.6-2_amd64.deb
Tue Nov 5 23:36:55 UTC 2019 - not updating data about wportuguese_20171225-3_all.deb
Tue Nov 5 23:36:56 UTC 2019 - not updating data about wpolish_20180621-1_all.deb
Tue Nov 5 23:36:56 UTC 2019 - not updating data about wpg2odg_0.9.6-2_amd64.deb
Tue Nov 5 23:36:57 UTC 2019 - not updating data about wpd2odt_0.9.6-2_amd64.deb
Tue Nov 5 23:36:58 UTC 2019 - not updating data about wpd2epub_0.9.6-2_amd64.deb
Tue Nov 5 23:36:58 UTC 2019 - not updating data about wpasupplicant_2%3a2.7+git20190128+0c1e29f-6_amd64.deb
Tue Nov 5 23:36:59 UTC 2019 - not updating data about wpan-tools_0.9-1_amd64.deb
Tue Nov 5 23:36:59 UTC 2019 - not updating data about wpagui_2%3a2.7+git20190128+0c1e29f-6_amd64.deb
Tue Nov 5 23:37:00 UTC 2019 - not updating data about wp2x_2.5-mhi-13_amd64.deb
Tue Nov 5 23:37:01 UTC 2019 - not updating data about wotsap_0.7-6_all.deb
Tue Nov 5 23:37:01 UTC 2019 - not updating data about workrave-data_1.10.23-5_all.deb
Tue Nov 5 23:37:02 UTC 2019 - not updating data about workrave_1.10.23-5_amd64.deb
Tue Nov 5 23:37:02 UTC 2019 - not updating data about worklog_2.0-1_amd64.deb
Tue Nov 5 23:37:03 UTC 2019 - not updating data about worker-data_3.15.4-1_all.deb
Tue Nov 5 23:37:03 UTC 2019 - not updating data about worker_3.15.4-1_amd64.deb
Tue Nov 5 23:37:04 UTC 2019 - not updating data about wordwarvi-sound_1.00+dfsg1-4_all.deb
Tue Nov 5 23:37:05 UTC 2019 - not updating data about wordwarvi_1.00+dfsg1-4_amd64.deb
Tue Nov 5 23:37:05 UTC 2019 - not updating data about wordpress-xrds-simple_1.2-1_all.deb
Tue Nov 5 23:37:06 UTC 2019 - not updating data about wordpress-theme-twentysixteen_5.0.4+dfsg1-1_all.deb
Tue Nov 5 23:37:06 UTC 2019 - not updating data about wordpress-theme-twentyseventeen_5.0.4+dfsg1-1_all.deb
Tue Nov 5 23:37:07 UTC 2019 - not updating data about wordpress-theme-twentynineteen_5.0.4+dfsg1-1_all.deb
Tue Nov 5 23:37:07 UTC 2019 - not updating data about wordpress-shibboleth_1.8-1_all.deb
Tue Nov 5 23:37:08 UTC 2019 - not updating data about wordpress-l10n_5.0.4+dfsg1-1_all.deb
Tue Nov 5 23:37:09 UTC 2019 - not updating data about wordpress_5.0.4+dfsg1-1_all.deb
Tue Nov 5 23:37:09 UTC 2019 - not updating data about wordplay_7.22-21_amd64.deb
Tue Nov 5 23:37:10 UTC 2019 - not updating data about wordnet-sense-index_1%3a3.0-35_all.deb
Tue Nov 5 23:37:10 UTC 2019 - not updating data about wordnet-gui_1%3a3.0-35_amd64.deb
Tue Nov 5 23:37:11 UTC 2019 - not updating data about wordnet-grind_1%3a3.0-35_amd64.deb
Tue Nov 5 23:37:11 UTC 2019 - not updating data about wordnet-dev_1%3a3.0-35_amd64.deb
Tue Nov 5 23:37:12 UTC 2019 - not updating data about wordnet-base_1%3a3.0-35_all.deb
Tue Nov 5 23:37:13 UTC 2019 - not updating data about wordnet_1%3a3.0-35_amd64.deb
Tue Nov 5 23:37:13 UTC 2019 - not updating data about wordgrinder-x11_0.7.2-1_amd64.deb
Tue Nov 5 23:37:14 UTC 2019 - not updating data about wordgrinder-ncurses_0.7.2-1_amd64.deb
Tue Nov 5 23:37:14 UTC 2019 - not updating data about wordgrinder-doc_0.7.2-1_all.deb
Tue Nov 5 23:37:15 UTC 2019 - not updating data about wordgrinder_0.7.2-1_all.deb
Tue Nov 5 23:37:16 UTC 2019 - not updating data about woof_20091227-2.1_all.deb
Tue Nov 5 23:37:16 UTC 2019 - not updating data about wondershaper_1.1a-10_all.deb
Tue Nov 5 23:37:17 UTC 2019 - not updating data about wogerman_1%3a2-35_all.deb
Tue Nov 5 23:37:17 UTC 2019 - not updating data about woff2_1.0.2-1_amd64.deb
Tue Nov 5 23:37:18 UTC 2019 - not updating data about woff-tools_0%3a2009.10.04-2+b1_amd64.deb
Tue Nov 5 23:37:18 UTC 2019 - not updating data about wodim_9%3a1.1.11-3+b2_amd64.deb
Tue Nov 5 23:37:19 UTC 2019 - not updating data about wnorwegian_2.2-4_all.deb
Tue Nov 5 23:37:20 UTC 2019 - not updating data about wngerman_20161207-7_all.deb
Tue Nov 5 23:37:20 UTC 2019 - not updating data about wmxres_1.2-10.1_amd64.deb
Tue Nov 5 23:37:21 UTC 2019 - not updating data about wmxmms2_0.6+repack-2_amd64.deb
Tue Nov 5 23:37:21 UTC 2019 - not updating data about wmwork_0.2.6-2+b1_amd64.deb
Tue Nov 5 23:37:22 UTC 2019 - not updating data about wmweather+_2.17-1_amd64.deb
Tue Nov 5 23:37:22 UTC 2019 - not updating data about wmweather_2.4.7-1_amd64.deb
Tue Nov 5 23:37:23 UTC 2019 - not updating data about wmwave_0.4-10+b1_amd64.deb
Tue Nov 5 23:37:24 UTC 2019 - not updating data about wmtop_0.85-1_amd64.deb
Tue Nov 5 23:37:24 UTC 2019 - not updating data about wmtime_1.4-1+b1_amd64.deb
Tue Nov 5 23:37:25 UTC 2019 - not updating data about wmtemp_0.0.6-3.3+b3_amd64.deb
Tue Nov 5 23:37:25 UTC 2019 - not updating data about wmsystemtray_1.4+git20150508-2+b1_amd64.deb
Tue Nov 5 23:37:26 UTC 2019 - downloading .json for wmsysmon_0.7.7+git20150808-1_amd64.deb () from buildinfo.debian.net
WARNING: failed to download https://buildinfo.debian.net/api/v1/buildinfos/checksums/sha1/
Tue Nov 5 23:37:27 UTC 2019 - UNREPRODUCIBLE: wmsysmon_0.7.7+git20150808-1_amd64.deb (387409ea291dee14ca440cb27addf4e5cb9e86e9) only on ftp.debian.org.
Tue Nov 5 23:37:28 UTC 2019 - downloading .json for wmsun_1.05-1+b1_amd64.deb (387409ea291dee14ca440cb27addf4e5cb9e86e9) from buildinfo.debian.net
FATAL: command execution failed
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: java.io.IOException: Backing channel 'osuosl-build173-amd64.debian.net' is disconnected.
at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:214)
at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:283)
at com.sun.proxy.$Proxy94.isAlive(Unknown Source)
at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1150)
at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1142)
at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:155)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:109)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
FATAL: Unable to delete script file /tmp/jenkins5396814403753275383.sh
java.io.EOFException
at java.base/java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2763)
at java.base/java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3258)
at java.base/java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:873)
at java.base/java.io.ObjectInputStream.(ObjectInputStream.java:350)
at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
at hudson.remoting.Command.readFrom(Command.java:140)
at hudson.remoting.Command.readFrom(Command.java:126)
at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:36)
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:63)
Caused: java.io.IOException: Unexpected termination of the channel
at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:77)
Caused: hudson.remoting.ChannelClosedException: Channel "unknown": Remote call on osuosl-build173-amd64.debian.net failed. The channel is closing down or has closed down
at hudson.remoting.Channel.call(Channel.java:950)
at hudson.FilePath.act(FilePath.java:1072)
at hudson.FilePath.act(FilePath.java:1061)
at hudson.FilePath.delete(FilePath.java:1542)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:123)
at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:66)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:741)
at hudson.model.Build$BuildExecution.build(Build.java:206)
at hudson.model.Build$BuildExecution.doRun(Build.java:163)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:504)
at hudson.model.Run.execute(Run.java:1815)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Build step 'Execute shell' marked build as failure
ERROR: Step ‘Console output (build log) parsing’ failed: no workspace for reproducible_compare_Debian_sha1sums_reverse_runner #294
From jenkins at jenkins.debian.net Thu Nov 7 14:21:15 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:21:15 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable: d-i_maintenance
#1784
In-Reply-To: <1741481320.19.1572960680745.JavaMail.jenkins@jenkins>
References: <1741481320.19.1572960680745.JavaMail.jenkins@jenkins>
Message-ID: <951521889.0.1573136476812.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:21:21 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:21:21 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build became unstable:
reproducible_maintenance_amd64_osuosl173 #3525
Message-ID: <968394023.1.1573136481555.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:21:45 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:21:45 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3421
In-Reply-To: <1207766264.112.1572991615172.JavaMail.jenkins@jenkins>
References: <1207766264.112.1572991615172.JavaMail.jenkins@jenkins>
Message-ID: <56437271.2.1573136505493.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:22:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:22:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_amd64/11349
Message-ID: <235906950.9.1573136568385.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#amd64 or https://jenkins.debian.net/job/d-i_overview_amd64/11349/ and https://jenkins.debian.net/job/d-i_overview_amd64/11349//console
From jenkins at jenkins.debian.net Thu Nov 7 14:22:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:22:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_armhf/11349
Message-ID: <1003182364.12.1573136568445.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#armhf or https://jenkins.debian.net/job/d-i_overview_armhf/11349/ and https://jenkins.debian.net/job/d-i_overview_armhf/11349//console
From jenkins at jenkins.debian.net Thu Nov 7 14:22:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:22:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_armel/11348
Message-ID: <722822925.11.1573136568417.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#armel or https://jenkins.debian.net/job/d-i_overview_armel/11348/ and https://jenkins.debian.net/job/d-i_overview_armel/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:22:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:22:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_hurd-i386/11348
Message-ID: <925413792.8.1573136568368.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#hurd-i386 or https://jenkins.debian.net/job/d-i_overview_hurd-i386/11348/ and https://jenkins.debian.net/job/d-i_overview_hurd-i386/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:22:47 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:22:47 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_arm64/11349
Message-ID: <763278751.10.1573136568389.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#arm64 or https://jenkins.debian.net/job/d-i_overview_arm64/11349/ and https://jenkins.debian.net/job/d-i_overview_arm64/11349//console
From jenkins at jenkins.debian.net Thu Nov 7 14:23:04 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:04 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: d-i_manual #924
Message-ID: <1196869684.13.1573136584214.JavaMail.jenkins@jenkins>
See
Changes:
[Frans.Spiesschaert] (nl) boot-installer.po translation update.
[Frans.Spiesschaert] (nl) hardware.po translation update.
[Frans.Spiesschaert] (nl) installation-howto.po translation update.
[Frans.Spiesschaert] (nl) install-methods.po translation update.
[Frans.Spiesschaert] (nl) partitioning.po translation update.
[Frans.Spiesschaert] (nl) post-install.po translation update.
[Frans.Spiesschaert] (nl) preparing.po translation update.
[Frans.Spiesschaert] (nl) preseed.po translation update.
[Frans.Spiesschaert] (nl) random-bits.po translation update.
[Frans.Spiesschaert] (nl) welcome.po translation update.
[debian-boot] [SILENT_COMMIT] Update of POT and PO files for the installation-guide
[Frans.Spiesschaert] (nl) using-d-i.po translation update.
------------------------------------------
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
No credentials specified
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://salsa.debian.org/installer-team/installation-guide.git # timeout=10
Fetching upstream changes from https://salsa.debian.org/installer-team/installation-guide.git
> git --version # timeout=10
> git fetch --tags --force --progress https://salsa.debian.org/installer-team/installation-guide.git +refs/heads/*:refs/remotes/origin/* # timeout=10
> git rev-parse origin/master^{commit} # timeout=10
Checking out Revision d2d89b07946bde74500485022c90681e3f0af494 (origin/master)
> git config core.sparsecheckout # timeout=10
> git checkout -f d2d89b07946bde74500485022c90681e3f0af494 # timeout=10
Commit message: "(nl) using-d-i.po translation update."
> git rev-list --no-walk e0558ed9a297caaee566c67844962d642265b29b # timeout=10
[workspace] $ /bin/sh -xe /tmp/jenkins6397976323572501109.sh
+ /srv/jenkins/bin/d-i_manual.sh
====================================================================================
Thu 7 Nov 14:20:56 UTC 2019 - running /srv/jenkins/bin/d-i_manual.sh (for job d-i_manual) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/d-i_manual.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 7 Nov 14:20:56 UTC 2019 - start running "/srv/jenkins/bin/d-i_manual.sh" (md5sum d266ffe003cd0a067cfd9a1460279d73) as "/tmp/jenkins-script-HlKLDu2L" on jenkins.
-rw-r--r-- 1 root root 145224361 Nov 5 23:05 /var/cache/pbuilder/base.tgz
/var/cache/pbuilder/base.tgz: gzip compressed data, last modified: Tue Nov 5 23:05:16 2019, from Unix, original size 419174400
W: /root/.pbuilderrc does not exist
W: cgroups are not available on the host, not using them.
I: Current time: Thu Nov 7 14:21:00 UTC 2019
I: pbuilder-time-stamp: 1573136460
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Refreshing the base.tgz
I: upgrading packages
Err:1 http://deb.debian.org/debian sid InRelease
Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
Reading package lists...
W: Failed to fetch http://deb.debian.org/debian/dists/sid/InRelease Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists...
Building dependency tree...
Reading state information...
aptitude is already the newest version (0.8.12-1).
build-essential is already the newest version (12.8).
dpkg-dev is already the newest version (1.19.7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: creating base tarball [/var/cache/pbuilder/base.tgz]
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/14490 and its subdirectories
W: cgroups are not available on the host, not using them.
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/base.tgz]
I: copying local configuration
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: Mounting
I: policy-rc.d already exists
Reading package lists...
Building dependency tree...
Reading state information...
passwd is already the newest version (1:4.7-2).
The following additional packages will be installed:
debootstrap libpsl5 wget
Suggested packages:
ubuntu-archive-keyring squid-deb-proxy-client cowdancer gdebi-core
Recommended packages:
gnupg arch-test publicsuffix devscripts eatmydata fakeroot net-tools
| iproute2 sudo ca-certificates
The following NEW packages will be installed:
debootstrap libpsl5 pbuilder wget
0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 1426 kB of archives.
After this operation, 4787 kB of additional disk space will be used.
Err:1 http://deb.debian.org/debian sid/main amd64 libpsl5 amd64 0.20.2-2
Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
Err:2 http://deb.debian.org/debian sid/main amd64 wget amd64 1.20.3-1+b2
Unable to connect to 78.137.99.97:3128:
Err:3 http://deb.debian.org/debian sid/main amd64 debootstrap all 1.0.116
Unable to connect to 78.137.99.97:3128:
Err:4 http://deb.debian.org/debian sid/main amd64 pbuilder all 0.230.4
Unable to connect to 78.137.99.97:3128:
E: Failed to fetch http://deb.debian.org/debian/pool/main/libp/libpsl/libpsl5_0.20.2-2_amd64.deb Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
E: Failed to fetch http://deb.debian.org/debian/pool/main/w/wget/wget_1.20.3-1+b2_amd64.deb Unable to connect to 78.137.99.97:3128:
E: Failed to fetch http://deb.debian.org/debian/pool/main/d/debootstrap/debootstrap_1.0.116_all.deb Unable to connect to 78.137.99.97:3128:
E: Failed to fetch http://deb.debian.org/debian/pool/main/p/pbuilder/pbuilder_0.230.4_all.deb Unable to connect to 78.137.99.97:3128:
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
I: unmounting filesystem
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: cleaning the build env
I: removing directory /srv/workspace/pbuilder/47653 and its subdirectories
Thu 7 Nov 14:23:03 UTC 2019 - /srv/jenkins/bin/d-i_manual.sh stopped running as /tmp/jenkins-script-HlKLDu2L, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:23:20 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:20 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_i386/11348
Message-ID: <862166865.15.1573136600269.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#i386 or https://jenkins.debian.net/job/d-i_overview_i386/11348/ and https://jenkins.debian.net/job/d-i_overview_i386/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:23:33 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:33 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_bullseye_bootstrap_upgrade_to_sid/43
Message-ID: <63593640.17.1573136613869.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_bootstrap_upgrade_to_sid/43//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_bootstrap_upgrade_to_sid/43/ for more information.
From jenkins at jenkins.debian.net Thu Nov 7 14:23:34 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:34 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_kfreebsd-amd64/11348
Message-ID: <1682787852.19.1573136614801.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#kfreebsd-amd64 or https://jenkins.debian.net/job/d-i_overview_kfreebsd-amd64/11348/ and https://jenkins.debian.net/job/d-i_overview_kfreebsd-amd64/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:23:36 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:36 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_mips/11348
Message-ID: <609801934.21.1573136616689.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#mips or https://jenkins.debian.net/job/d-i_overview_mips/11348/ and https://jenkins.debian.net/job/d-i_overview_mips/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:23:39 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:23:39 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_kfreebsd-i386/11348
Message-ID: <968114376.23.1573136619094.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#kfreebsd-i386 or https://jenkins.debian.net/job/d-i_overview_kfreebsd-i386/11348/ and https://jenkins.debian.net/job/d-i_overview_kfreebsd-i386/11348//console
From jenkins at jenkins.debian.net Thu Nov 7 14:24:13 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:13 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_mipsel/11350
Message-ID: <1726545241.25.1573136653301.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#mipsel or https://jenkins.debian.net/job/d-i_overview_mipsel/11350/ and https://jenkins.debian.net/job/d-i_overview_mipsel/11350//console
From jenkins at jenkins.debian.net Thu Nov 7 14:24:19 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:19 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_powerpc/11349
Message-ID: <337189073.27.1573136659671.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#powerpc or https://jenkins.debian.net/job/d-i_overview_powerpc/11349/ and https://jenkins.debian.net/job/d-i_overview_powerpc/11349//console
From jenkins at jenkins.debian.net Thu Nov 7 14:24:20 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:20 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks9 #2665
Message-ID: <1896543234.28.1573136660128.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build9-amd64.debian.net (profitbricks9 amd64) in workspace
[reproducible_maintenance_amd64_profitbricks9] $ /bin/sh -xe /tmp/jenkins12349794645167911491.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ControlSocket /var/lib/jenkins/.ssh/master-jenkins at profitbricks-build9-amd64.debian.net:22 already exists, disabling multiplexing
====================================================================================
Thu 07 Nov 2019 02:22:08 PM UTC - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_amd64_profitbricks9) on profitbricks-build9-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:08 PM UTC - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-qIDyiOrm" on profitbricks-build9-amd64.
Thu Nov 7 14:22:08 UTC 2019 - Looking for too large files in /var/log/
Thu Nov 7 14:22:08 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 14:22:08 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 14:22:08 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 14:22:08 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 14:22:08 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 07 Nov 2019 02:24:19 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-qIDyiOrm, which will now be removed.
SSH EXIT CODE: 7
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:24:25 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:25 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: reproducible_html_notes
#9216
Message-ID: <1781109704.29.1573136665329.JavaMail.jenkins@jenkins>
See
Changes:
[Mattia Rizzolo] Remove archived bugs
[lamby] Add patch for libaqbanking
[lamby] adacgi now reproducible
[lamby] adasockets now reproducible
[lamby] Update packages affected by timestamps_in_ada_library_information_files.
[lamby] Update packages affected by cflags_recorded_in_ada_ali_files
[lamby] pianobooster is now reproducible
[lamby] opentoken is removed from unstable
[lamby] abcm2ps is now reproducible
[lamby] ada-reference-manual is now reproducible
[lamby] Update status of Ada packages
[Mattia Rizzolo] --fix-deterministic
------------------------------------------
Started by an SCM change
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
No credentials specified
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository https://salsa.debian.org/reproducible-builds/reproducible-notes.git
> git init # timeout=10
Fetching upstream changes from https://salsa.debian.org/reproducible-builds/reproducible-notes.git
> git --version # timeout=10
> git fetch --tags --force --progress https://salsa.debian.org/reproducible-builds/reproducible-notes.git +refs/heads/*:refs/remotes/origin/* # timeout=10
> git config remote.origin.url https://salsa.debian.org/reproducible-builds/reproducible-notes.git # timeout=10
> git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
> git config remote.origin.url https://salsa.debian.org/reproducible-builds/reproducible-notes.git # timeout=10
Fetching upstream changes from https://salsa.debian.org/reproducible-builds/reproducible-notes.git
> git fetch --tags --force --progress https://salsa.debian.org/reproducible-builds/reproducible-notes.git +refs/heads/*:refs/remotes/origin/* # timeout=10
> git rev-parse origin/master^{commit} # timeout=10
Checking out Revision 1b16ef0237bd1d249860f490a14bb2c0d3adab29 (origin/master)
> git config core.sparsecheckout # timeout=10
> git checkout -f 1b16ef0237bd1d249860f490a14bb2c0d3adab29 # timeout=10
Commit message: "--fix-deterministic"
> git rev-list --no-walk 3bb223b85560de9451aaa51dc93a5bd24f705d82 # timeout=10
[workspace] $ /bin/sh -xe /tmp/jenkins1039611600368588187.sh
+ /srv/jenkins/bin/reproducible_notes.py
[2019-11-07 14:23:28] INFO: Starting at 2019-11-07 14:23:28.000527
[2019-11-07 14:23:33] INFO: notes loaded. There are 6420 packages listed
[2019-11-07 14:23:42] INFO: Warning: This query produces no results: SELECT s.id, s.version, s.suite
FROM results AS r
JOIN sources AS s ON r.package_id=s.id
JOIN distributions AS d on d.id=s.distribution
WHERE d.name = 'debian'
AND s.name='pyviennacl' AND r.status != ''
This means there is no tested package with the name pyviennacl
[2019-11-07 14:23:46] INFO: notes checked. There are 6419 packages listed
[2019-11-07 14:23:46] INFO: Issues loaded. There are 352 issues
[2019-11-07 14:23:47] INFO: Removed the following issues: {'cflags_recorded_in_in_ada_ali_files'}
[2019-11-07 14:24:05] INFO: Saved 88021 notes in the database
[2019-11-07 14:24:05] INFO: Finished at 2019-11-07 14:24:05.968155, took: 0:00:37.967647
+ /srv/jenkins/bin/reproducible_html_notes.py
[2019-11-07 14:24:06] INFO: Starting at 2019-11-07 14:24:06.792722
[2019-11-07 14:24:06] INFO: Finding out which usertagged bugs have been closed or at least have patches
[2019-11-07 14:24:20] WARNING: This query produces no results: SELECT s.name FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE s.name='pyviennacl' AND r.status != ''
[2019-11-07 14:24:20] WARNING: This means there is no tested package with the name pyviennacl.
Traceback (most recent call last):
File "/srv/jenkins/bin/reproducible_html_notes.py", line 506, in
iterate_over_notes(notes)
File "/srv/jenkins/bin/reproducible_html_notes.py", line 404, in iterate_over_notes
html = gen_html_note(package, note)
File "/srv/jenkins/bin/reproducible_html_notes.py", line 238, in gen_html_note
tmp += fill_issue_in_note(issue)
File "/srv/jenkins/bin/reproducible_html_notes.py", line 214, in fill_issue_in_note
details = issues[issue]
KeyError: 'cflags_recorder_in_ada_ali_files'
[2019-11-07 14:24:25] INFO: Finished at 2019-11-07 14:24:25.048018, took: 0:00:18.255306
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:24:40 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:40 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks11 #12228
Message-ID: <1587236920.30.1573136680915.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
[...truncated 466.59 KB...]
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Y9cJZvNfsI'
removed '/srv/reproducible-results/rbuild-debian/tmp.EKRjo5LWwi/tmp.b7wyj6AnTV'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.EKRjo5LWwi'
removed '/srv/reproducible-results/rbuild-debian/tmp.YuTQwNtYhg/tmp.WHYylBU5Uy'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.YuTQwNtYhg'
removed '/srv/reproducible-results/rbuild-debian/tmp.QwsxPgim8P/tmp.OAFDPMGe5x'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.QwsxPgim8P'
removed '/srv/reproducible-results/rbuild-debian/tmp.2kJShlNG0u/tmp.oGlakhRtfA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.2kJShlNG0u'
removed '/srv/reproducible-results/rbuild-debian/tmp.Fs4TBFEevf/tmp.PAiSx1u4G2'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Fs4TBFEevf'
removed '/srv/reproducible-results/rbuild-debian/tmp.wApJgrxKLm/tmp.bqUAdqAvwh'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.wApJgrxKLm'
removed '/srv/reproducible-results/rbuild-debian/tmp.05Wx0xiB7Z/tmp.XeejL5whxW'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.05Wx0xiB7Z'
removed '/srv/reproducible-results/rbuild-debian/tmp.PUNvp96e3g/tmp.N4HtKE36JA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.PUNvp96e3g'
removed '/srv/reproducible-results/rbuild-debian/tmp.1zqRRacP5k/tmp.eQny74JU7y'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1zqRRacP5k'
removed '/srv/reproducible-results/rbuild-debian/tmp.1j1TLIYPG5/tmp.fVicgjxjxe'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1j1TLIYPG5'
removed '/srv/reproducible-results/rbuild-debian/tmp.402jyAkqNo/tmp.TnmOgUtE3w'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.402jyAkqNo'
removed '/srv/reproducible-results/rbuild-debian/tmp.VlLuxdIoEJ/tmp.VbSRlFqrlk'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.VlLuxdIoEJ'
removed '/srv/reproducible-results/rbuild-debian/tmp.a7dvvL7Cpm/tmp.dK7Uw6vVsX'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.a7dvvL7Cpm'
removed '/srv/reproducible-results/rbuild-debian/tmp.k3KQ8iqj7j/tmp.5yg8kFs29v'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.k3KQ8iqj7j'
removed '/srv/reproducible-results/rbuild-debian/tmp.4nwWPHWAgf/tmp.paK583xIDL'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4nwWPHWAgf'
removed '/srv/reproducible-results/rbuild-debian/tmp.O2Y4eJL2HT/tmp.vmyuHzSyIe'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.O2Y4eJL2HT'
removed '/srv/reproducible-results/rbuild-debian/tmp.65AxPeVcLJ/tmp.cvH1GaQlyd'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.65AxPeVcLJ'
removed '/srv/reproducible-results/rbuild-debian/tmp.rOjNBGcDNP/tmp.zqeSUigzN1'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.rOjNBGcDNP'
removed '/srv/reproducible-results/rbuild-debian/tmp.xyHcXSZb9L/tmp.1uq9swQRZl'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.xyHcXSZb9L'
removed '/srv/reproducible-results/rbuild-debian/tmp.PALYMWTIQ0/tmp.BpSPqiiZOz'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.PALYMWTIQ0'
removed '/srv/reproducible-results/rbuild-debian/tmp.1uFxKFe08m/tmp.AauzcZ3AaX'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1uFxKFe08m'
removed '/srv/reproducible-results/rbuild-debian/tmp.nHpW4sszx8/tmp.sPOWzHBFjv'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.nHpW4sszx8'
removed '/srv/reproducible-results/rbuild-debian/tmp.jRX9VvHsiR/tmp.RQSfqywQ5i'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.jRX9VvHsiR'
removed '/srv/reproducible-results/rbuild-debian/tmp.LC28uPauO3/tmp.LA6yck6LzL'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.LC28uPauO3'
removed '/srv/reproducible-results/rbuild-debian/tmp.XDlLTLXXda/tmp.1fyr6IFzaR'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.XDlLTLXXda'
removed '/srv/reproducible-results/rbuild-debian/tmp.ddmkiZ7oaX/tmp.wFYQo60e6t'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ddmkiZ7oaX'
removed '/srv/reproducible-results/rbuild-debian/tmp.g7wFePUOqK/tmp.uuekF1csG2'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.g7wFePUOqK'
removed '/srv/reproducible-results/rbuild-debian/tmp.a76h6bjv1n/tmp.9oXfpDHgPA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.a76h6bjv1n'
removed '/srv/reproducible-results/rbuild-debian/tmp.3WoWDmFy3s/tmp.djb4vvScYO'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.3WoWDmFy3s'
removed '/srv/reproducible-results/rbuild-debian/tmp.aFrUGCa5wU/tmp.zYZMzU8UHZ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.aFrUGCa5wU'
removed '/srv/reproducible-results/rbuild-debian/tmp.bYnoRfjuXA/tmp.9EPoPU65MQ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.bYnoRfjuXA'
removed '/srv/reproducible-results/rbuild-debian/tmp.4p5zvsFcbW/tmp.iKGpZGpBIH'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4p5zvsFcbW'
removed '/srv/reproducible-results/rbuild-debian/tmp.XkWm9cxkOZ/tmp.zwtIKWUCny'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.XkWm9cxkOZ'
removed '/srv/reproducible-results/rbuild-debian/tmp.4pdeEgd9FA/tmp.MBJEer2J8H'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4pdeEgd9FA'
removed '/srv/reproducible-results/rbuild-debian/tmp.XwCNkVBuX0/tmp.YB4Ia9LEte'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.XwCNkVBuX0'
removed '/srv/reproducible-results/rbuild-debian/tmp.epoLxsZqv1/tmp.ONhXC6Jb5X'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.epoLxsZqv1'
removed '/srv/reproducible-results/rbuild-debian/tmp.p0D0EPu5fQ/tmp.GOCAhPzr3u'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.p0D0EPu5fQ'
removed '/srv/reproducible-results/rbuild-debian/tmp.opzgHW9u6m/tmp.Jt933GnQkU'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.opzgHW9u6m'
removed '/srv/reproducible-results/rbuild-debian/tmp.dFQHTlrnLJ/tmp.FfIgsKeZ3u'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.dFQHTlrnLJ'
removed '/srv/reproducible-results/rbuild-debian/tmp.g33XLMLBA6/tmp.hYiv0KLDQO'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.g33XLMLBA6'
removed '/srv/reproducible-results/rbuild-debian/tmp.znCkCdDhVV/tmp.FixC4Os4PX'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.znCkCdDhVV'
removed '/srv/reproducible-results/rbuild-debian/tmp.U8GxMLaeia/tmp.bBVHO0IPgC'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.U8GxMLaeia'
removed '/srv/reproducible-results/rbuild-debian/tmp.KY6oBtcUVP/tmp.d449lqKIHj'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.KY6oBtcUVP'
removed '/srv/reproducible-results/rbuild-debian/tmp.2G6r96lh6v/tmp.OUvvYG45cR'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.2G6r96lh6v'
removed '/srv/reproducible-results/rbuild-debian/tmp.6ZPKnysd3Q/tmp.JREnfF2ANJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.6ZPKnysd3Q'
removed '/srv/reproducible-results/rbuild-debian/tmp.JZJmZ1XL2j/tmp.xt5aeFKeVl'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.JZJmZ1XL2j'
removed '/srv/reproducible-results/rbuild-debian/tmp.q2XeR7oWZq/tmp.hqruu9DyV5'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.q2XeR7oWZq'
removed '/srv/reproducible-results/rbuild-debian/tmp.gCl4otZ9G9/tmp.MeRVDiRchw'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.gCl4otZ9G9'
removed '/srv/reproducible-results/rbuild-debian/tmp.ded4IeCdM8/tmp.0Amuyjnw5Q'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ded4IeCdM8'
removed '/srv/reproducible-results/rbuild-debian/tmp.TiVqXD1dkt/tmp.5ndNk9UfcI'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.TiVqXD1dkt'
removed '/srv/reproducible-results/rbuild-debian/tmp.0vPmGK1ZpM/tmp.jvNfNoDzaJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.0vPmGK1ZpM'
removed '/srv/reproducible-results/rbuild-debian/tmp.e6I8NokSSr/tmp.TOfGHBfTID'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.e6I8NokSSr'
removed '/srv/reproducible-results/rbuild-debian/tmp.IP3ryPamgW/tmp.yFB5j3PrPa'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.IP3ryPamgW'
removed '/srv/reproducible-results/rbuild-debian/tmp.fzTLaEIFBQ/tmp.WqP9YcPJUV'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fzTLaEIFBQ'
removed '/srv/reproducible-results/rbuild-debian/tmp.GQsnu8xMtg/tmp.k19sJHFH3b'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.GQsnu8xMtg'
removed '/srv/reproducible-results/rbuild-debian/tmp.hKdJBWe8OI/tmp.LAkUPNV84K'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.hKdJBWe8OI'
removed '/srv/reproducible-results/rbuild-debian/tmp.Bcv9Nk3r2W/tmp.BFv9OkvCQH'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Bcv9Nk3r2W'
removed '/srv/reproducible-results/rbuild-debian/tmp.weoLja5Su4/tmp.40rivkclx1'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.weoLja5Su4'
removed '/srv/reproducible-results/rbuild-debian/tmp.FmOE8E3aoD/tmp.ljRkQKtxEJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.FmOE8E3aoD'
removed '/srv/reproducible-results/rbuild-debian/tmp.4Y2GgFAuXd/tmp.Zuin837Pru'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4Y2GgFAuXd'
removed '/srv/reproducible-results/rbuild-debian/tmp.Oxiunlq2il/tmp.wUPdo7PYkC'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Oxiunlq2il'
removed '/srv/reproducible-results/rbuild-debian/tmp.YFmgsASN1P/tmp.vVF83LFOfb'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.YFmgsASN1P'
removed '/srv/reproducible-results/rbuild-debian/tmp.casxTIqLq4/tmp.ZryRKBRdfJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.casxTIqLq4'
removed '/srv/reproducible-results/rbuild-debian/tmp.ZXmcZjGOz6/tmp.ICqzlVYeko'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ZXmcZjGOz6'
removed '/srv/reproducible-results/rbuild-debian/tmp.9syg95lIKv/tmp.QChNLwsKoN'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.9syg95lIKv'
removed '/srv/reproducible-results/rbuild-debian/tmp.fo6uMqfldf/tmp.hmM3wTA60t'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fo6uMqfldf'
removed '/srv/reproducible-results/rbuild-debian/tmp.Y8Wl0tdQil/tmp.1MLyZT6ob9'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Y8Wl0tdQil'
removed '/srv/reproducible-results/rbuild-debian/tmp.zgTmRqkHgG/tmp.3eY76qdLi7'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.zgTmRqkHgG'
removed '/srv/reproducible-results/rbuild-debian/tmp.lv0rVco9qZ/tmp.gyQbfPF0Qv'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.lv0rVco9qZ'
removed '/srv/reproducible-results/rbuild-debian/tmp.qV6qVQsos7/tmp.uYV85HZQX4'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.qV6qVQsos7'
removed '/srv/reproducible-results/rbuild-debian/tmp.DYIeIaki2i/tmp.DEKwoqcMn2'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DYIeIaki2i'
removed '/srv/reproducible-results/rbuild-debian/tmp.8GgcH9PcAa/tmp.WoGWeV8BOa'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.8GgcH9PcAa'
removed '/srv/reproducible-results/rbuild-debian/tmp.CwOM3rzeYe/tmp.4Ia9zF7yRM'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.CwOM3rzeYe'
removed '/srv/reproducible-results/rbuild-debian/tmp.sWKrtN7EEn/tmp.xd8cRcHb1T'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.sWKrtN7EEn'
removed '/srv/reproducible-results/rbuild-debian/tmp.qbntZvHIn0/tmp.9IuHXuYal4'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.qbntZvHIn0'
removed '/srv/reproducible-results/rbuild-debian/tmp.ayYhTOPRxf/tmp.3Pf44esEoP'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ayYhTOPRxf'
removed '/srv/reproducible-results/rbuild-debian/tmp.O253lcJjlj/tmp.klHC01DzHE'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.O253lcJjlj'
removed '/srv/reproducible-results/rbuild-debian/tmp.RikxYkg7Ck/tmp.MCcY9LRqSw'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.RikxYkg7Ck'
removed '/srv/reproducible-results/rbuild-debian/tmp.uX9kaNnGYB/tmp.dRm9F650Qx'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.uX9kaNnGYB'
removed '/srv/reproducible-results/rbuild-debian/tmp.DTnbyXFdW0/tmp.Jmyf8O5CWJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DTnbyXFdW0'
removed '/srv/reproducible-results/rbuild-debian/tmp.iIfV1fide0/tmp.g6yldaULIp'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.iIfV1fide0'
removed '/srv/reproducible-results/rbuild-debian/tmp.nX7wdCEdEA/tmp.wV8OE7YEML'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.nX7wdCEdEA'
removed '/srv/reproducible-results/rbuild-debian/tmp.EIuyJIMNSZ/tmp.eErB6TjGMF'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.EIuyJIMNSZ'
removed '/srv/reproducible-results/rbuild-debian/tmp.hK3TWoMNbp/tmp.ydrn8nt8XX'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.hK3TWoMNbp'
removed '/srv/reproducible-results/rbuild-debian/tmp.mojzMXmOpX/tmp.wLjUwjcfxA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.mojzMXmOpX'
removed '/srv/reproducible-results/rbuild-debian/tmp.m2wDugtxUs/tmp.Ad4EcGEJaw'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.m2wDugtxUs'
removed '/srv/reproducible-results/rbuild-debian/tmp.MdaMUszksM/tmp.AIQEoPk2bq'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.MdaMUszksM'
removed '/srv/reproducible-results/rbuild-debian/tmp.gKZiCUKK9n/tmp.aStAaRK9AI'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.gKZiCUKK9n'
removed '/srv/reproducible-results/rbuild-debian/tmp.laNM3mpYr7/tmp.gpwFzxU5B9'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.laNM3mpYr7'
removed '/srv/reproducible-results/rbuild-debian/tmp.CUUr5u5rUU/tmp.dOb4KakBzF'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.CUUr5u5rUU'
removed '/srv/reproducible-results/rbuild-debian/tmp.uwNSjqPG2t/tmp.fIgJTLRzpg'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.uwNSjqPG2t'
removed '/srv/reproducible-results/rbuild-debian/tmp.fN1fAA1ipV/tmp.Yoyv2GmTlm'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fN1fAA1ipV'
removed '/srv/reproducible-results/rbuild-debian/tmp.JQhLcABAYI/tmp.ZKUe0AcGXR'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.JQhLcABAYI'
removed '/srv/reproducible-results/rbuild-debian/tmp.J5MXzV43xr/tmp.kxa3QjvVXw'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.J5MXzV43xr'
removed '/srv/reproducible-results/rbuild-debian/tmp.4c7VhAkF1E/tmp.SPtYX2Wg26'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4c7VhAkF1E'
removed '/srv/reproducible-results/rbuild-debian/tmp.ScQqgLo1lN/tmp.ImEIUUVT7y'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ScQqgLo1lN'
removed '/srv/reproducible-results/rbuild-debian/tmp.rSKqhcEcoX/tmp.Fx2emqi9QB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.rSKqhcEcoX'
removed '/srv/reproducible-results/rbuild-debian/tmp.K09kyizle4/tmp.5I9vIlueyB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.K09kyizle4'
removed '/srv/reproducible-results/rbuild-debian/tmp.0E8RnwL2Bu/tmp.7YQeJstO2q'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.0E8RnwL2Bu'
removed '/srv/reproducible-results/rbuild-debian/tmp.o4JoVq9MAX/tmp.kxu7W4DVhD'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.o4JoVq9MAX'
removed '/srv/reproducible-results/rbuild-debian/tmp.X8Jg0ld3L8/tmp.dEL1ag9fTB'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.X8Jg0ld3L8'
removed '/srv/reproducible-results/rbuild-debian/tmp.ymUjk6w0a7/tmp.06zOMM8r2N'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ymUjk6w0a7'
removed '/srv/reproducible-results/rbuild-debian/tmp.iZnmSv4A3m/tmp.a7AsWNYAcm'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.iZnmSv4A3m'
removed '/srv/reproducible-results/rbuild-debian/tmp.PNAmjoTIIb/tmp.CQDyMXiCPd'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.PNAmjoTIIb'
removed '/srv/reproducible-results/rbuild-debian/tmp.z9Djoi1m4m/tmp.HLcG2DYTea'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.z9Djoi1m4m'
removed '/srv/reproducible-results/rbuild-debian/tmp.Op8FcYvmVg/tmp.Rwrv9p8yBT'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.Op8FcYvmVg'
removed '/srv/reproducible-results/rbuild-debian/tmp.CSvabXz3bX/tmp.EnzrmQO8L7'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.CSvabXz3bX'
removed '/srv/reproducible-results/rbuild-debian/tmp.o8DXuo37ql/tmp.24rhLohMKf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.o8DXuo37ql'
removed '/srv/reproducible-results/rbuild-debian/tmp.p0HJeTPJBX/tmp.5LZGR9Om3l'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.p0HJeTPJBX'
removed '/srv/reproducible-results/rbuild-debian/tmp.ll6knrHoal/tmp.yYlvS3ClY9'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ll6knrHoal'
removed '/srv/reproducible-results/rbuild-debian/tmp.KV7mmhc9IY/tmp.fO1UUzCGOH'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.KV7mmhc9IY'
removed '/srv/reproducible-results/rbuild-debian/tmp.b57UJpLYqA/tmp.SEbj6nyXGy'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.b57UJpLYqA'
removed '/srv/reproducible-results/rbuild-debian/tmp.AyopKcJlwa/tmp.nsdu37qxXk'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.AyopKcJlwa'
removed '/srv/reproducible-results/rbuild-debian/tmp.JtycuvrJJe/tmp.7fTjp0GH5H'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.JtycuvrJJe'
These old directories have been deleted.
Thu Nov 7 14:22:28 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 14:22:28 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Old pbuilder build directories found in /srv/workspace/pbuilder/
drwxrwxr-x 5 root root 100 Oct 27 14:57 /srv/workspace/pbuilder/40344rm: skipping '/srv/workspace/pbuilder/40344/sys', since it's on a different device
rm: skipping '/srv/workspace/pbuilder/40344/proc', since it's on a different device
rm: cannot remove '/srv/workspace/pbuilder/40344/dev/shm': Device or resource busy
Thu Nov 7 14:22:28 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 14:22:28 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 14:22:28 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 07 Nov 2019 02:24:40 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-290xYAt1, which will now be removed.
SSH EXIT CODE: 7
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:24:46 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:24:46 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_ppc64el/11349
Message-ID: <1460583424.32.1573136686761.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#ppc64el or https://jenkins.debian.net/job/d-i_overview_ppc64el/11349/ and https://jenkins.debian.net/job/d-i_overview_ppc64el/11349//console
From jenkins at jenkins.debian.net Thu Nov 7 14:25:00 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:00 +0000 (UTC)
Subject: [Qa-jenkins-scm] Failure: d-i_overview_s390x/11352
Message-ID: <1367776039.34.1573136700804.JavaMail.jenkins@jenkins>
See http://d-i.debian.org/daily-images/daily-build-overview.html#s390x or https://jenkins.debian.net/job/d-i_overview_s390x/11352/ and https://jenkins.debian.net/job/d-i_overview_s390x/11352//console
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks1 #15760
Message-ID: <1677628396.38.1573136727991.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_maintenance_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins9998291895450304052.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_amd64_profitbricks1 #812
Message-ID: <1631038129.35.1573136727812.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_setup_pbuilder_buster_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins2680159478709648231.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_amd64_profitbricks1 #820
Message-ID: <589972761.36.1573136727982.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_setup_pbuilder_stretch_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins9781356196958766922.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_amd64_profitbricks1 #117
Message-ID: <931444356.37.1573136727983.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_setup_pbuilder_bullseye_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins1601631205744388437.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_amd64_profitbricks1 #1647
Message-ID: <1921259154.39.1573136727992.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_setup_pbuilder_unstable_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins10319890265646425024.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:25:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:25:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_amd64_profitbricks1 #1648
Message-ID: <397992539.40.1573136727992.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace
[reproducible_setup_pbuilder_experimental_amd64_profitbricks1] $ /bin/sh -xe /tmp/jenkins6937739459399032023.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ssh: connect to host profitbricks-build1-amd64.debian.net port 22: Connection timed out
Thu 7 Nov 14:24:17 UTC 2019 - profitbricks-build1-amd64.debian.net seems to be down, sleeping 1min before exiting with error.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:29:18 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:29:18 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_bullseye_armhf_odxu4c #107
In-Reply-To: <423275758.39.1572961085413.JavaMail.jenkins@jenkins>
References: <423275758.39.1572961085413.JavaMail.jenkins@jenkins>
Message-ID: <264723718.41.1573136958007.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:29:52 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:29:52 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_experimental_armhf_odxu4c #1331
In-Reply-To: <576047992.40.1572961085431.JavaMail.jenkins@jenkins>
References: <576047992.40.1572961085431.JavaMail.jenkins@jenkins>
Message-ID: <1426781280.42.1573136992185.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:30:38 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:30:38 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_unstable_armhf_odxu4c #1328
In-Reply-To: <1164273349.37.1572961085413.JavaMail.jenkins@jenkins>
References: <1164273349.37.1572961085413.JavaMail.jenkins@jenkins>
Message-ID: <161560385.43.1573137038493.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:31:48 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:31:48 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_archlinux_scheduler #4939
Message-ID: <606437840.44.1573137108845.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
[workspace] $ /bin/sh -xe /tmp/jenkins15154615595015189752.sh
+ /srv/jenkins/bin/reproducible_archlinux_scheduler.sh
====================================================================================
Thu 7 Nov 14:22:48 UTC 2019 - running /srv/jenkins/bin/reproducible_archlinux_scheduler.sh (for job reproducible_archlinux_scheduler) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_archlinux_scheduler.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 7 Nov 14:22:48 UTC 2019 - start running "/srv/jenkins/bin/reproducible_archlinux_scheduler.sh" (md5sum 53b679a7ade7adfb1e72b8fa2cf0e1f7) as "/tmp/jenkins-script-O1rzRqzB" on jenkins.
Thu Nov 7 14:22:49 UTC 2019 - 8742 Arch Linux packages were previously known to Arch Linux.
Thu Nov 7 14:22:49 UTC 2019 - 8749 Arch Linux packages are known in our database.
archlinux-scheduler-11246
Thu Nov 7 14:22:49 UTC 2019 - updating pacman's knowledge of Arch Linux repositories (by running pacman -Syu --noconform').
:: Synchronizing package databases...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0
curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
error: failed to update core (error invoking external downloader)
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0
curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
error: failed to update extra (error invoking external downloader)
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:11 --:--:-- 0
curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
error: failed to update community (error invoking external downloader)
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0
curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
error: failed to update multilib (error invoking external downloader)
error: failed to synchronize all databases
Thu 7 Nov 14:31:48 UTC 2019 - /srv/jenkins/bin/reproducible_archlinux_scheduler.sh stopped running as /tmp/jenkins-script-O1rzRqzB, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:34:48 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:34:48 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_buster_armhf_jtx1c #700
In-Reply-To: <946426681.43.1572961317658.JavaMail.jenkins@jenkins>
References: <946426681.43.1572961317658.JavaMail.jenkins@jenkins>
Message-ID: <1289647977.45.1573137288886.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:37:06 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:37:06 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_bullseye_armhf_jtx1c #117
In-Reply-To: <522729837.44.1572961317658.JavaMail.jenkins@jenkins>
References: <522729837.44.1572961317658.JavaMail.jenkins@jenkins>
Message-ID: <940416333.46.1573137426098.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:40:19 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:40:19 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_stretch_arm64_codethink13 #772
In-Reply-To: <248488794.6.1572960484778.JavaMail.jenkins@jenkins>
References: <248488794.6.1572960484778.JavaMail.jenkins@jenkins>
Message-ID: <1606497893.47.1573137619674.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:43:59 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:43:59 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_buster_arm64_codethink13 #809
In-Reply-To: <2047936519.8.1572960484817.JavaMail.jenkins@jenkins>
References: <2047936519.8.1572960484817.JavaMail.jenkins@jenkins>
Message-ID: <7751421.50.1573137839834.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:44:06 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:44:06 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_bullseye_arm64_codethink13 #100
In-Reply-To: <1776714718.7.1572960484794.JavaMail.jenkins@jenkins>
References: <1776714718.7.1572960484794.JavaMail.jenkins@jenkins>
Message-ID: <1481469399.51.1573137846380.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:47:16 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:47:16 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_unstable_arm64_codethink13 #1012
In-Reply-To: <1997961171.10.1572960494992.JavaMail.jenkins@jenkins>
References: <1997961171.10.1572960494992.JavaMail.jenkins@jenkins>
Message-ID: <1156137933.52.1573138036792.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:47:17 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:47:17 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_experimental_arm64_codethink13 #1012
In-Reply-To: <1316679926.9.1572960484910.JavaMail.jenkins@jenkins>
References: <1316679926.9.1572960484910.JavaMail.jenkins@jenkins>
Message-ID: <326578613.53.1573138037579.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:47:54 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:47:54 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_experimental_armhf_p64b #939
In-Reply-To: <1765017916.46.1572961318904.JavaMail.jenkins@jenkins>
References: <1765017916.46.1572961318904.JavaMail.jenkins@jenkins>
Message-ID: <1283206895.54.1573138074047.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:51:51 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:51:51 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_maintenance_armhf_opi2c #13274
In-Reply-To: <2113102922.114.1572996931074.JavaMail.jenkins@jenkins>
References: <2113102922.114.1572996931074.JavaMail.jenkins@jenkins>
Message-ID: <733317558.55.1573138311981.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 14:55:45 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:55:45 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_jenkins #17495
Message-ID: <748059061.56.1573138545552.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
[workspace] $ /bin/sh -xe /tmp/jenkins16365485599489241683.sh
+ /srv/jenkins/bin/reproducible_maintenance.sh
====================================================================================
Thu 7 Nov 14:20:34 UTC 2019 - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_amd64_jenkins) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 7 Nov 14:20:35 UTC 2019 - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-YrGN34eI" on jenkins.
Thu Nov 7 14:20:36 UTC 2019 - backup db and update public copy.
Producing /var/lib/jenkins/userContent/reproducible/reproducibledb.html from /usr/share/postgresql_autodoc/html.tmpl
Thu Nov 7 14:53:34 UTC 2019 - Looking for too large files in /var/log/
Thu Nov 7 14:53:34 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 14:53:34 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 14:53:34 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Thu Nov 7 14:53:34 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Old archlinuxrb-build and rbuild-openwrt-results temp directories found in /srv/reproducible-results/
removed '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b2/thunderbird/build2.version'
removed '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b2/thunderbird/build2.log'
removed directory '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b2/thunderbird'
removed directory '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b2'
removed '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b1/thunderbird/thunderbird-68.2.0-1-x86_64.pkg.tar.xz'
removed '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b1/thunderbird/build1.log'
removed '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b1/thunderbird/build1.version'
removed directory '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b1/thunderbird'
removed directory '/srv/reproducible-results/archlinuxrb-build-ZtultpKH/b1'
removed directory '/srv/reproducible-results/archlinuxrb-build-ZtultpKH'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b2/perl-authen-sasl/build2.version'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b2/perl-authen-sasl/perl-authen-sasl-2.16-6-any.pkg.tar.xz'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b2/perl-authen-sasl/build2.log'
removed directory '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b2/perl-authen-sasl'
removed directory '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b2'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b1/perl-authen-sasl/perl-authen-sasl-2.16-6-any.pkg.tar.xz'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b1/perl-authen-sasl/build1.log'
removed '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b1/perl-authen-sasl/build1.version'
removed directory '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b1/perl-authen-sasl'
removed directory '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl/b1'
removed directory '/srv/reproducible-results/archlinuxrb-build-LE2vLNBl'
These old directories have been deleted.
Thu Nov 7 14:53:34 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 14:53:34 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 7 Nov 14:55:45 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-YrGN34eI, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 14:56:20 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:56:20 +0000 (UTC)
Subject: [Qa-jenkins-scm] Fixed:
chroot-installation_bullseye_install_haskell/40
Message-ID: <945787145.58.1573138580294.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_install_haskell/40//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_install_haskell/40/ for more information.
From jenkins at jenkins.debian.net Thu Nov 7 14:56:36 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 14:56:36 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_unstable_armhf_p64b #938
In-Reply-To: <2090088025.45.1572961318722.JavaMail.jenkins@jenkins>
References: <2090088025.45.1572961318722.JavaMail.jenkins@jenkins>
Message-ID: <418710593.59.1573138596342.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 15:03:29 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:03:29 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is back to normal :
reproducible_setup_pbuilder_stretch_armhf_opi2c #815
In-Reply-To: <1740620151.83.1572970216748.JavaMail.jenkins@jenkins>
References: <1740620151.83.1572970216748.JavaMail.jenkins@jenkins>
Message-ID: <1683005044.62.1573139009688.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 15:27:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:27:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Still Failing:
chroot-installation_bullseye_install_developer/41
Message-ID: <907433736.68.1573140452656.JavaMail.jenkins@jenkins>
See https://jenkins.debian.net/job/chroot-installation_bullseye_install_developer/41//console or just https://jenkins.debian.net/job/chroot-installation_bullseye_install_developer/41/ for more information.
From jenkins at jenkins.debian.net Thu Nov 7 15:53:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:53:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_buster_amd64_profitbricks11 #813
Message-ID: <1877980236.78.1573142007265.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_setup_pbuilder_buster_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins10386923883473012436.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_buster_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "buster" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-0X8qM30T" on profitbricks-build11-amd64.
/var/cache/pbuilder/buster-reproducible-base.tgz outdated, creating a new one...
Thu Nov 7 14:22:07 UTC 2019 - creating /var/cache/pbuilder/buster-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://78.137.99.97:3128 --basetgz /var/cache/pbuilder/buster-reproducible-base-new.tgz --distribution buster --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
W: cgroups are not available on the host, not using them.
I: Distribution is buster.
I: Current time: Thu Nov 7 14:22:07 UTC 2019
I: pbuilder-time-stamp: 1573136527
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Retrieving Release
E: Failed getting release file http://deb.debian.org/debian/dists/buster/Release
E: debootstrap failed
E: Tail of debootstrap.log:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
E: End of debootstrap.log
W: Aborting with an error
Thu 07 Nov 2019 03:53:27 PM UTC - /srv/jenkins/bin/reproducible_setup_pbuilder.sh stopped running as /tmp/jenkins-script-0X8qM30T, which will now be removed.
SSH EXIT CODE: 1
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 15:53:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:53:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_bullseye_amd64_profitbricks11 #116
Message-ID: <286212500.81.1573142007299.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_setup_pbuilder_bullseye_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins17443570126808509616.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_bullseye_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "bullseye" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-NkQkI0ZE" on profitbricks-build11-amd64.
/var/cache/pbuilder/bullseye-reproducible-base.tgz outdated, creating a new one...
Thu Nov 7 14:22:07 UTC 2019 - creating /var/cache/pbuilder/bullseye-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://78.137.99.97:3128 --basetgz /var/cache/pbuilder/bullseye-reproducible-base-new.tgz --distribution bullseye --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
W: cgroups are not available on the host, not using them.
I: Distribution is bullseye.
I: Current time: Thu Nov 7 14:22:07 UTC 2019
I: pbuilder-time-stamp: 1573136527
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Retrieving Release
E: Failed getting release file http://deb.debian.org/debian/dists/bullseye/Release
E: debootstrap failed
E: Tail of debootstrap.log:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
E: End of debootstrap.log
W: Aborting with an error
Thu 07 Nov 2019 03:53:27 PM UTC - /srv/jenkins/bin/reproducible_setup_pbuilder.sh stopped running as /tmp/jenkins-script-NkQkI0ZE, which will now be removed.
SSH EXIT CODE: 1
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 15:53:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:53:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_experimental_amd64_profitbricks11 #1045
Message-ID: <317390987.79.1573142007274.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_setup_pbuilder_experimental_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins10959939756706084405.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
ControlSocket /var/lib/jenkins/.ssh/master-jenkins at profitbricks-build11-amd64.debian.net:22 already exists, disabling multiplexing
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_experimental_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "experimental" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-O3uvliPa" on profitbricks-build11-amd64.
/var/cache/pbuilder/experimental-reproducible-base.tgz outdated, creating a new one...
Thu Nov 7 14:22:07 UTC 2019 - creating /var/cache/pbuilder/experimental-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://78.137.99.97:3128 --basetgz /var/cache/pbuilder/experimental-reproducible-base-new.tgz --distribution unstable --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
W: cgroups are not available on the host, not using them.
I: Distribution is unstable.
I: Current time: Thu Nov 7 14:22:07 UTC 2019
I: pbuilder-time-stamp: 1573136527
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Retrieving Release
E: Failed getting release file http://deb.debian.org/debian/dists/unstable/Release
E: debootstrap failed
E: Tail of debootstrap.log:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
E: End of debootstrap.log
W: Aborting with an error
Thu 07 Nov 2019 03:53:27 PM UTC - /srv/jenkins/bin/reproducible_setup_pbuilder.sh stopped running as /tmp/jenkins-script-O3uvliPa, which will now be removed.
SSH EXIT CODE: 1
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 15:53:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:53:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_stretch_amd64_profitbricks11 #824
Message-ID: <714225037.80.1573142007297.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_setup_pbuilder_stretch_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins14494890974116495393.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_stretch_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "stretch" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-BKHVdfSI" on profitbricks-build11-amd64.
/var/cache/pbuilder/stretch-reproducible-base.tgz outdated, creating a new one...
Thu Nov 7 14:22:07 UTC 2019 - creating /var/cache/pbuilder/stretch-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://78.137.99.97:3128 --basetgz /var/cache/pbuilder/stretch-reproducible-base-new.tgz --distribution stretch --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
W: cgroups are not available on the host, not using them.
I: Distribution is stretch.
I: Current time: Thu Nov 7 14:22:07 UTC 2019
I: pbuilder-time-stamp: 1573136527
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Retrieving Release
E: Failed getting release file http://deb.debian.org/debian/dists/stretch/Release
E: debootstrap failed
E: Tail of debootstrap.log:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
E: End of debootstrap.log
W: Aborting with an error
Thu 07 Nov 2019 03:53:27 PM UTC - /srv/jenkins/bin/reproducible_setup_pbuilder.sh stopped running as /tmp/jenkins-script-BKHVdfSI, which will now be removed.
SSH EXIT CODE: 1
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 15:53:27 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 15:53:27 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_setup_pbuilder_unstable_amd64_profitbricks11 #1046
Message-ID: <1729586489.77.1573142007261.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_setup_pbuilder_unstable_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins1274139033654583076.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - running /srv/jenkins/bin/reproducible_setup_pbuilder.sh (for job reproducible_setup_pbuilder_unstable_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_setup_pbuilder.sh,
has been called using "unstable" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 02:22:07 PM UTC - start running "/srv/jenkins/bin/reproducible_setup_pbuilder.sh" (md5sum c24786f3f7785b1aaebf8d3051221d48) as "/tmp/jenkins-script-M67mqqt2" on profitbricks-build11-amd64.
/var/cache/pbuilder/unstable-reproducible-base.tgz outdated, creating a new one...
Thu Nov 7 14:22:07 UTC 2019 - creating /var/cache/pbuilder/unstable-reproducible-base.tgz now...
W: /root/.pbuilderrc does not exist
D: cmdline: create --http-proxy http://78.137.99.97:3128 --basetgz /var/cache/pbuilder/unstable-reproducible-base-new.tgz --distribution unstable --debootstrapopts --no-merged-usr --extrapackages locales-all fakeroot disorderfs --loglevel D
W: cgroups are not available on the host, not using them.
I: Distribution is unstable.
I: Current time: Thu Nov 7 14:22:07 UTC 2019
I: pbuilder-time-stamp: 1573136527
I: Building the build environment
I: running debootstrap
/usr/sbin/debootstrap
I: Retrieving InRelease
I: Retrieving Release
E: Failed getting release file http://deb.debian.org/debian/dists/unstable/Release
E: debootstrap failed
E: Tail of debootstrap.log:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
E: End of debootstrap.log
W: Aborting with an error
Thu 07 Nov 2019 03:53:27 PM UTC - /srv/jenkins/bin/reproducible_setup_pbuilder.sh stopped running as /tmp/jenkins-script-M67mqqt2, which will now be removed.
SSH EXIT CODE: 1
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 16:01:32 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:01:32 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins: obsolete-transitional #740
Message-ID: <2100590854.85.1573142492549.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
[workspace] $ /bin/sh -xe /tmp/jenkins10614056363544825355.sh
+ /srv/jenkins/bin/find_obsolete_transitional_packages.sh bullseye stretch buster sid
====================================================================================
Thu 7 Nov 16:00:00 UTC 2019 - running /srv/jenkins/bin/find_obsolete_transitional_packages.sh (for job obsolete-transitional) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/find_obsolete_transitional_packages.sh,
has been called using "bullseye stretch buster sid" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 7 Nov 16:00:00 UTC 2019 - start running "/srv/jenkins/bin/find_obsolete_transitional_packages.sh" (md5sum fd9ffd6e0e910c174365dab178eba2a5) as "/tmp/jenkins-script-nRek5ISN" on jenkins.
/usr/bin/chdist
/usr/bin/grep-dctrl
Looking at stretch buster sid for obsolete transitional packages in bullseye.
Run chdist apt stretch-amd64 update
And enjoy.
W: Forcing arch amd64 for this command only.
Err:1 http://cdn-fastly.deb.debian.org/debian stretch InRelease
Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
Reading package lists...
W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/stretch/InRelease Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
Run chdist apt buster-amd64 update
And enjoy.
W: Forcing arch amd64 for this command only.
Err:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
Reading package lists...
W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/buster/InRelease Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
Run chdist apt sid-amd64 update
And enjoy.
W: Forcing arch amd64 for this command only.
Err:1 http://cdn-fastly.deb.debian.org/debian sid InRelease
Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
Reading package lists...
W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/sid/InRelease Could not connect to 78.137.99.97:3128 (78.137.99.97), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
ls: cannot access '/tmp/transitional-YMct8/stretch/stretch-amd64/var/lib/apt/lists/*_dists_stretch_main_binary-amd64_Packages': No such file or directory
Thu 7 Nov 16:01:32 UTC 2019 - /srv/jenkins/bin/find_obsolete_transitional_packages.sh stopped running as /tmp/jenkins-script-nRek5ISN, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 16:05:07 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:05:07 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl173 #3526
In-Reply-To: <968394023.1.1573136481555.JavaMail.jenkins@jenkins>
References: <968394023.1.1573136481555.JavaMail.jenkins@jenkins>
Message-ID: <1647445437.86.1573142707064.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 16:05:22 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:05:22 +0000 (UTC)
Subject: [Qa-jenkins-scm] Jenkins build is still unstable:
reproducible_maintenance_amd64_osuosl172 #3422
In-Reply-To: <56437271.2.1573136505493.JavaMail.jenkins@jenkins>
References: <56437271.2.1573136505493.JavaMail.jenkins@jenkins>
Message-ID: <1909535653.87.1573142722687.JavaMail.jenkins@jenkins>
See
From jenkins at jenkins.debian.net Thu Nov 7 16:07:11 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:07:11 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_jenkins #17496
In-Reply-To: <748059061.56.1573138545552.JavaMail.jenkins@jenkins>
References: <748059061.56.1573138545552.JavaMail.jenkins@jenkins>
Message-ID: <1820443963.90.1573142832014.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building on master in workspace
[workspace] $ /bin/sh -xe /tmp/jenkins820687897947550639.sh
+ /srv/jenkins/bin/reproducible_maintenance.sh
====================================================================================
Thu 7 Nov 16:05:00 UTC 2019 - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_amd64_jenkins) on jenkins now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 7 Nov 16:05:01 UTC 2019 - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-Y3FSHnxP" on jenkins.
Thu Nov 7 16:05:01 UTC 2019 - backup db and update public copy.
Thu Nov 7 16:05:01 UTC 2019 - Looking for too large files in /var/log/
Thu Nov 7 16:05:01 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 16:05:01 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 7 Nov 16:07:11 UTC 2019 - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-Y3FSHnxP, which will now be removed.
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 16:07:12 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:07:12 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks11 #12229
In-Reply-To: <1587236920.30.1573136680915.JavaMail.jenkins@jenkins>
References: <1587236920.30.1573136680915.JavaMail.jenkins@jenkins>
Message-ID: <510794921.91.1573142832698.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build11-amd64.debian.net (profitbricks11 amd64) in workspace
[reproducible_maintenance_amd64_profitbricks11] $ /bin/sh -xe /tmp/jenkins3408397190854355721.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 04:05:01 PM UTC - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_amd64_profitbricks11) on profitbricks-build11-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 04:05:01 PM UTC - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-XR2jqwRA" on profitbricks-build11-amd64.
Thu Nov 7 16:05:01 UTC 2019 - Looking for too large files in /var/log/
Thu Nov 7 16:05:01 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Old temp directories found in /srv/reproducible-results/rbuild-debian
removed '/srv/reproducible-results/rbuild-debian/tmp.VD0oQLNd7z/tmp.hUPucGgeJc'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.VD0oQLNd7z'
removed '/srv/reproducible-results/rbuild-debian/tmp.YG0hUPhUQ3/tmp.NI6wIqiZuc'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.YG0hUPhUQ3'
removed '/srv/reproducible-results/rbuild-debian/tmp.QZnxMd5NNu/tmp.rWmXyFZDCA'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.QZnxMd5NNu'
removed '/srv/reproducible-results/rbuild-debian/tmp.rkDGUnfswA/tmp.qGaJ1ETnB5'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.rkDGUnfswA'
removed '/srv/reproducible-results/rbuild-debian/tmp.ilbMJXHgaT/tmp.K5xJt2Cnka'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ilbMJXHgaT'
removed '/srv/reproducible-results/rbuild-debian/tmp.W8bkWdr9pQ/tmp.IY9ywCfYov'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.W8bkWdr9pQ'
removed '/srv/reproducible-results/rbuild-debian/tmp.fzrOsJu7qi/tmp.oQUvLVmO2W'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fzrOsJu7qi'
removed '/srv/reproducible-results/rbuild-debian/tmp.hzkQgdmXQo/tmp.gbF2yclpCj'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.hzkQgdmXQo'
removed '/srv/reproducible-results/rbuild-debian/tmp.j40t761vOf/tmp.kHblqiReHF'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.j40t761vOf'
removed '/srv/reproducible-results/rbuild-debian/tmp.rnzsvS78Z8/tmp.n31L2XsJ9O'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.rnzsvS78Z8'
removed '/srv/reproducible-results/rbuild-debian/tmp.KKoogk3MtW/tmp.3fr1rMu1OU'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.KKoogk3MtW'
removed '/srv/reproducible-results/rbuild-debian/tmp.HrnIK0cE63/tmp.EedLrGAkNQ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.HrnIK0cE63'
removed '/srv/reproducible-results/rbuild-debian/tmp.4vtW92WfIW/tmp.aKoiaHpWWR'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.4vtW92WfIW'
removed '/srv/reproducible-results/rbuild-debian/tmp.g3pcmtAgUX/tmp.u0E9CLpVww'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.g3pcmtAgUX'
removed '/srv/reproducible-results/rbuild-debian/tmp.TBK7qmVLe5/tmp.WkoeUFrAso'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.TBK7qmVLe5'
removed '/srv/reproducible-results/rbuild-debian/tmp.YRLmFKnmJ6/tmp.I4XjUYUdhJ'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.YRLmFKnmJ6'
removed '/srv/reproducible-results/rbuild-debian/tmp.fzf6W3aPvY/tmp.bNQw1MrHVf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.fzf6W3aPvY'
removed '/srv/reproducible-results/rbuild-debian/tmp.ffNQYA5doa/tmp.UofVsfnbD2'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.ffNQYA5doa'
removed '/srv/reproducible-results/rbuild-debian/tmp.TYQDamVw0Y/tmp.ZhIso5bWwi'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.TYQDamVw0Y'
removed '/srv/reproducible-results/rbuild-debian/tmp.g4Darmz4s6/tmp.rHOXyuegoL'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.g4Darmz4s6'
removed '/srv/reproducible-results/rbuild-debian/tmp.DnM5fmub01/tmp.BgfyMkT2tW'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.DnM5fmub01'
removed '/srv/reproducible-results/rbuild-debian/tmp.yVc7pYzsMz/tmp.J50Mrw54lg'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.yVc7pYzsMz'
removed '/srv/reproducible-results/rbuild-debian/tmp.1ZyU08OhO5/tmp.pNDAgHZWSM'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.1ZyU08OhO5'
removed '/srv/reproducible-results/rbuild-debian/tmp.uU1geHuhhj/tmp.6KD9Pugyxx'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.uU1geHuhhj'
removed '/srv/reproducible-results/rbuild-debian/tmp.rwP348SErL/tmp.nMTK8Em4Vp'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.rwP348SErL'
removed '/srv/reproducible-results/rbuild-debian/tmp.QdDVMg82CQ/tmp.7cQb4SFO2r'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.QdDVMg82CQ'
removed '/srv/reproducible-results/rbuild-debian/tmp.0UXWitAFvE/tmp.eE67fjv5re'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.0UXWitAFvE'
removed '/srv/reproducible-results/rbuild-debian/tmp.t4WWGWUxhk/tmp.VdJ0IcSosf'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.t4WWGWUxhk'
removed '/srv/reproducible-results/rbuild-debian/tmp.LklF8BGeU7/tmp.oelZhu0Idy'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.LklF8BGeU7'
removed '/srv/reproducible-results/rbuild-debian/tmp.MipV6Kg9Pq/tmp.YU2wOCs7nE'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.MipV6Kg9Pq'
removed '/srv/reproducible-results/rbuild-debian/tmp.dlwXKUDasM/tmp.kxPK78aMWb'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.dlwXKUDasM'
removed '/srv/reproducible-results/rbuild-debian/tmp.WPBPInkfaz/tmp.kZCtH0Xg1e'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.WPBPInkfaz'
removed '/srv/reproducible-results/rbuild-debian/tmp.0Yk2UZaRJS/tmp.ZVKxPoGDO1'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.0Yk2UZaRJS'
removed '/srv/reproducible-results/rbuild-debian/tmp.jA4BlnswXs/tmp.etXp9DmcOM'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.jA4BlnswXs'
removed '/srv/reproducible-results/rbuild-debian/tmp.hv88lGyXaN/tmp.MaEMK9XIG4'
removed directory '/srv/reproducible-results/rbuild-debian/tmp.hv88lGyXaN'
These old directories have been deleted.
Thu Nov 7 16:05:01 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting pbuilder build directories, older than 3 days.
Old pbuilder build directories found in /srv/workspace/pbuilder/
drwxrwxr-x 5 root root 100 Oct 27 14:57 /srv/workspace/pbuilder/40344rm: skipping '/srv/workspace/pbuilder/40344/sys', since it's on a different device
rm: skipping '/srv/workspace/pbuilder/40344/proc', since it's on a different device
rm: cannot remove '/srv/workspace/pbuilder/40344/dev/shm': Device or resource busy
Thu Nov 7 16:05:01 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 16:05:01 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 16:05:02 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 07 Nov 2019 04:07:12 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-XR2jqwRA, which will now be removed.
SSH EXIT CODE: 7
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 16:07:28 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:07:28 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks9 #2666
In-Reply-To: <1896543234.28.1573136660128.JavaMail.jenkins@jenkins>
References: <1896543234.28.1573136660128.JavaMail.jenkins@jenkins>
Message-ID: <1355909179.92.1573142848759.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build9-amd64.debian.net (profitbricks9 amd64) in workspace
[reproducible_maintenance_amd64_profitbricks9] $ /bin/sh -xe /tmp/jenkins923135580462611509.sh
+ /srv/jenkins/bin/jenkins_master_wrapper.sh
====================================================================================
Thu 07 Nov 2019 04:05:15 PM UTC - running /srv/jenkins/bin/reproducible_maintenance.sh (for job reproducible_maintenance_amd64_profitbricks9) on profitbricks-build9-amd64 now.
To learn to understand this, git clone https://salsa.debian.org/qa/jenkins.debian.net.git
and then have a look at the files README, INSTALL, CONTRIBUTING and maybe TODO.
This invocation of this script, which is located in bin/reproducible_maintenance.sh,
has been called using "" as arguments.
Please send feedback about jenkins to qa-jenkins-dev at lists.alioth.debian.org,
or as a bug against the 'jenkins.debian.org' pseudo-package,
feedback about specific job results should go to their respective lists and/or the BTS.
====================================================================================
Thu 07 Nov 2019 04:05:15 PM UTC - start running "/srv/jenkins/bin/reproducible_maintenance.sh" (md5sum 73b01e4ab89fbade796bf998aa678dca) as "/tmp/jenkins-script-Us0uE8gr" on profitbricks-build9-amd64.
Thu Nov 7 16:05:15 UTC 2019 - Looking for too large files in /var/log/
Thu Nov 7 16:05:15 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 16:05:15 UTC 2019 - Deleting temporary directories in /tmp, older than 3 days.
Thu Nov 7 16:05:15 UTC 2019 - Deleting temp directories in /srv/reproducible-results/rbuild-debian, older than 3 days.
Thu Nov 7 16:05:15 UTC 2019 - Deleting chroots build directories, older than 7 days.
Thu Nov 7 16:05:15 UTC 2019 - testing whether the proxy works...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:21 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:22 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:23 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:24 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:25 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:26 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:27 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:28 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:29 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:30 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:31 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:32 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:33 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:34 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:35 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:36 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:37 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:38 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:39 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:40 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:41 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:42 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:43 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:44 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:45 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:46 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:47 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:48 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:49 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:50 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:51 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:52 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:53 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:54 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:55 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:56 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:57 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:58 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:01:59 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:00 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:04 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:05 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:06 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:07 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:08 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:09 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:02:10 --:--:-- 0curl: (7) Failed to connect to 78.137.99.97 port 3128: Connection timed out
Thu 07 Nov 2019 04:07:26 PM UTC - /srv/jenkins/bin/reproducible_maintenance.sh stopped running as /tmp/jenkins-script-Us0uE8gr, which will now be removed.
SSH EXIT CODE: 7
Build step 'Execute shell' marked build as failure
From jenkins at jenkins.debian.net Thu Nov 7 16:08:26 2019
From: jenkins at jenkins.debian.net (jenkins at jenkins.debian.net)
Date: Thu, 7 Nov 2019 16:08:26 +0000 (UTC)
Subject: [Qa-jenkins-scm] Build failed in Jenkins:
reproducible_maintenance_amd64_profitbricks1 #15761
In-Reply-To: <1677628396.38.1573136727991.JavaMail.jenkins@jenkins>
References: <1677628396.38.1573136727991.JavaMail.jenkins@jenkins>
Message-ID: <2116864895.93.1573142906438.JavaMail.jenkins@jenkins>
See
Changes:
------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on profitbricks-build1-amd64.debian.net (profitbricks1 amd64) in workspace