diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-04 11:17:52 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-04 11:17:52 +0100 |
commit | 5b0a2dc249bd25dbc7a0c8c911f80a7ffc94dcd2 (patch) | |
tree | 9af37c41be5abac4a1bb9a35a8f79a3bee1be7b0 | |
parent | 616a0f01b7132dfe695616aa2307c5504de9b0f4 (diff) | |
download | jenkins.debian.net-5b0a2dc249bd25dbc7a0c8c911f80a7ffc94dcd2.tar.xz |
reproducible: only keep artifacts for 1 day (instead of 2)
-rwxr-xr-x | bin/reproducible_build.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_maintenance.sh | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 5e0bf03d..6756966c 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -48,7 +48,7 @@ save_artifacts() { mkdir -p $BASE/$ARTIFACTS cp -r $TMPDIR/* $BASE/$ARTIFACTS/ echo | tee -a ${RBUILDLOG} - local msg="Artifacts from this build have been preserved. They will be available for 48h only, so download them now.\n" + local msg="Artifacts from this build have been preserved. They will be available for 24h only, so download them now.\n" msg="${msg}WARNING: You shouldn't trust packages downloaded from this host, they can contain malware or the worst of your fears, packaged nicely in debian format.\n" msg="${msg}If you are not afraid facing your fears while helping the world by investigating reproducible build issues, you can download the artifacts from the following location: $URL\n" printf "$msg" | tee -a $BUILDLOG diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index dfa6ea4a..50bef4e7 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -317,13 +317,13 @@ if [ ! -z "$PSCALL" ] ; then fi -# remove artifacts older than 2 days -echo "$(date -u) - Checking for artifacts older than 2 days." -ARTIFACTS=$(find $BASE/artifacts/* -maxdepth 1 -type d -mtime +2 -exec ls -lad {} \; 2>/dev/null|| true) +# remove artifacts older than a day +echo "$(date -u) - Checking for artifacts older than a day." +ARTIFACTS=$(find $BASE/artifacts/* -maxdepth 1 -type d -mtime +1 -exec ls -lad {} \; 2>/dev/null|| true) if [ ! -z "$ARTIFACTS" ] ; then echo echo "Removed old artifacts:" - find $BASE/artifacts/* -maxdepth 1 -type d -mtime +2 -exec rm -rv {} \; + find $BASE/artifacts/* -maxdepth 1 -type d -mtime +1 -exec rm -rv {} \; echo fi |