diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-09-28 01:16:15 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-09-28 01:16:15 +0200 |
commit | 50142d729a8e62b6abc6ada8b5460420b3e96706 (patch) | |
tree | c6ca597c007d8508e6c8e23a6f51f89c392cd7e4 | |
parent | 310f28365f4dd6a247390e812c689642025aeea6 (diff) | |
download | jenkins.debian.net-50142d729a8e62b6abc6ada8b5460420b3e96706.tar.xz |
reproducible: make job not fail
-rwxr-xr-x | bin/reproducible_setup.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_stats.sh | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bin/reproducible_setup.sh b/bin/reproducible_setup.sh index 7e757072..6376efec 100755 --- a/bin/reproducible_setup.sh +++ b/bin/reproducible_setup.sh @@ -19,7 +19,7 @@ sudo pbuilder --create --basetgz /var/cache/pbuilder/base-reproducible.tgz --dis sudo pbuilder --execute --save-after-exec --basetgz /var/cache/pbuilder/base-reproducible.tgz -- ${TMPFILE} rm ${TMPFILE} -# the alternative would be to make the job definition more complicated: collecting logs for all jobs but this one... +# the alternative would be to make the job definition more complicated: collecting logs for all jobs but this one and _stats... mkdir -p results/_success touch results/dummy.log touch results/_success/dummy.log diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 51c233be..27a4c2f9 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -28,3 +28,8 @@ echo "$COUNT_GOOD packages successfully built reproducibly: ${GOOD}" echo "$COUNT_BAD packages failed to built reproducibly: ${BAD}" echo "$COUNT_UGLY packages failed to build from source: ${UGLY}" echo "$COUNT_SOURCELESS packages doesn't exist in sid and need investigation: $SOURCELESS" + +# the alternative would be to make the job definition more complicated: collecting logs for all jobs but this one and _setup... +mkdir -p results/_success +touch results/dummy.log +touch results/_success/dummy.log |