diff options
-rw-r--r-- | .buildkite/hooks/pre-command | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command index ea4b9f8b23..6f9dcecdf6 100644 --- a/.buildkite/hooks/pre-command +++ b/.buildkite/hooks/pre-command @@ -2,6 +2,9 @@ set -eu +# Only execute in the verify pipeline +[[ "$BUILDKITE_PIPELINE_NAME" =~ verify$ ]] || exit 0 + docker ps || true free -m || true |