github.com/discordapp/buildkite-agent@v2.6.6+incompatible/packaging/github/linux/buildkite-agent.cfg (about) 1 # The token from your Buildkite "Agents" page 2 token="xxx" 3 4 # The name of the agent 5 name="%hostname-%n" 6 7 # The priority of the agent (higher priorities are assigned work first) 8 # priority=1 9 10 # Meta-data for the agent (default is "queue=default") 11 # meta-data="key1=val2,key2=val2" 12 13 # Include the host's EC2 meta-data (instance-id, instance-type, and ami-id) as meta-data 14 # meta-data-ec2=true 15 16 # Include the host's EC2 tags as meta-data 17 # meta-data-ec2-tags=true 18 19 # Include the host's Google Cloud meta-data (instance-id, machine-type, preemptible, project-id, region, and zone) as meta-data 20 # meta-data-gcp=true 21 22 # Path to the bootstrap script. You should avoid changing this file as it will 23 # be overridden when you update your agent. If you need to make changes to this 24 # file: use the hooks provided, or copy the file and reference it here. 25 bootstrap-script="$HOME/.buildkite-agent/bootstrap.sh" 26 27 # Path to where the builds will run from 28 build-path="$HOME/.buildkite-agent/builds" 29 30 # Directory where the hook scripts are found 31 hooks-path="$HOME/.buildkite-agent/hooks" 32 33 # Flags to pass to the `git clone` command 34 # git-clone-flags=-v 35 36 # Flags to pass to the `git clean` command 37 # git-clean-flags=-fdq 38 39 # Do not run jobs within a pseudo terminal 40 # no-pty=true 41 42 # Don't automatically verify SSH fingerprints 43 # no-automatic-ssh-fingerprint-verification=true 44 45 # Don't allow this agent to run arbitrary console commands 46 # no-command-eval=true 47 48 # Enable debug mode 49 # debug=true 50 51 # Don't show colors in logging 52 # no-color=true