The Docker does not depend on
apt-cacher-ngpackage. Ref: #14002.Do not try to install the Docker if
docker.serviceis detected on the system (e.g., the Docker was installed manually). Fix #13623 (comment) by Sjors.Prevent the setting of more than one environment variable for the
gitian-builder(an alternative to #13999). E.g., USE_LXC being set shadows USE_DOCKER; for details seegitian-builder/libexec/make-clean-vm:
VMSW=KVM
if [ -n "$USE_LXC" ]; then
VMSW=LXC
elif [ -n "$USE_VBOX" ]; then
VMSW=VBOX
elif [ -n "$USE_DOCKER" ]; then
VMSW=DOCKER
fi
- The
gitian-builder/bin/gverifyscript returns the exit code 1 if a signature verification ends with 'BAD SIGNATURE' or 'MISMATCH' by design. This PR allows to see the verification results for all signatures without a premature fail of thegitian-build.pyscript. Ref: #14014.