diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-21 12:07:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-21 12:07:55 +0100 |
commit | 087ac492f818651e514313272fc094cebdd55440 (patch) | |
tree | d9b3f443f2500500f3840da73064a6ef8ac0fc6b /bin | |
parent | 6b1d288aad3439b616e060d23639c3dc787cad40 (diff) | |
download | jenkins.debian.net-087ac492f818651e514313272fc094cebdd55440.tar.xz |
reproducible: announce artifact collection
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 506dd915..95ac2659 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -165,9 +165,14 @@ else SRCPACKAGE=$(echo $RESULT|cut -d "|" -f3) SCHEDULED_DATE=$(echo $RESULT|cut -d "|" -f4) SAVE_ARTIFACTS=$(echo $RESULT|cut -d "|" -f5) + if [ "$SAVE_ARTIFACTS" = "1" ] ; then + AANOUNCE=" Artifacts will be preserved." + else + AANOUNCE="" + fi create_results_dirs echo "=============================================================================" - echo "Trying to reproducibly build ${SRCPACKAGE} in ${SUITE} on ${ARCH} now." + echo "Trying to reproducibly build ${SRCPACKAGE} in ${SUITE} on ${ARCH} now.$AANOUNCE" echo "=============================================================================" set -x DATE=$(date +'%Y-%m-%d %H:%M') |