1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

buildserver: delete corrupt files from the cache

In order to make CI and other automation easier, delete any corrupt files
from the cache if they fail the SHA-256 check.

https://jenkins.debian.net/view/reproducible/job/reproducible_setup_fdroid_build_environment_profitbricks3/112/console
This commit is contained in:
Hans-Christoph Steiner 2016-07-06 22:16:26 +02:00
parent d4c6fffb30
commit 8b53ae0ad0

View File

@ -306,6 +306,7 @@ for srcurl, shasum in cachefiles:
print("\t...shasum verified for " + local_filename)
else:
print("Invalid shasum of '" + v + "' detected for " + local_filename)
os.remove(local_filename)
sys.exit(1)
# use VirtualBox software virtualization if hardware is not available,