Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .buildkite/hooks/post-checkout
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set +e

if [[ $BUILDKITE_AGENT_META_DATA_QUEUE == "pipeline-uploader" ]]; then
echo "Skipping on `pipeline-uploader` agents"
echo "Skipping on 'pipeline-uploader' agents"
exit 0
fi

Expand All @@ -14,4 +14,6 @@ for id in $(docker ps --quiet); do
docker kill $id
done

docker system prune --all --volumes --force
docker container prune --force
docker volume prune --force
docker network prune --force