In my pipeline.yaml
I define at the top level:
env:
BUILDKITE_AGENT_DEBUG: "true"
BUILDKITE_CLEAN_CHECKOUT: "true"
BUILDKITE_GIT_CLONE_FLAGS: "-q"
However when my build runs I still see the default -v
passed and not my provided clone flags.
[90m# Host "github.com" already in list of known hosts at "/var/lib/buildkite-agent/.ssh/known_hosts"[0m
[90m$[0m git clone -v -- git@github.com:org/myrepo.git .
Cloning into '.'...
In the UI under the Environment tab I see BUILDKITE_GIT_CLONE_FLAGS="-q"
but it doesn't appear in the logs.