github.com/stevenmatthewt/agent@v3.5.4+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 # Tags for the agent (default is "queue=default") 11 # tags="key1=val2,key2=val2" 12 13 # Include the host's EC2 meta-data as tags (instance-id, instance-type, and ami-id) 14 # tags-from-ec2=true 15 16 # Include the host's EC2 tags as tags 17 # tags-from-ec2-tags=true 18 19 # Include the host's Google Cloud meta-data as tags (instance-id, machine-type, preemptible, project-id, region, and zone) 20 # tags-from-gcp=true 21 22 # Path to a custom bootstrap command to run. By default this is `buildkite-agent bootstrap`. 23 # This allows you to override the entire execution of a job. Generally you should use hooks instead! 24 # See https://buildkite.com/docs/agent/hooks 25 # bootstrap-script="" 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 # Directory where plugins will be installed 34 plugins-path="$HOME/.buildkite-agent/plugins" 35 36 # Flags to pass to the `git clone` command 37 # git-clone-flags=-v 38 39 # Flags to pass to the `git clean` command 40 # git-clean-flags=-fxdq 41 42 # Do not run jobs within a pseudo terminal 43 # no-pty=true 44 45 # Don't automatically verify SSH fingerprints 46 # no-automatic-ssh-fingerprint-verification=true 47 48 # Don't allow this agent to run arbitrary console commands 49 # no-command-eval=true 50 51 # Don't allow this agent to run plugins 52 # no-plugins=true 53 54 # Enable debug mode 55 # debug=true 56 57 # Don't show colors in logging 58 # no-color=true