authelia/.buildkite/hooks/pre-exit
Amir Zarrinkafsh 3de1827b21
[Buildkite] Control clean builds with agent metadata (#840)
This is to optimise build times at the sacrifice of disk space/clean up tasks.
2020-04-09 14:46:04 +10:00

8 lines
163 B
Bash
Executable File

#!/bin/bash
set +u
if [[ $BUILDKITE_AGENT_META_DATA_CLEANBUILD != "false" ]]; then
echo "--- :docker: Clean environment"
docker system prune -af --volumes
fi