Skip to content

Commit

Permalink
Merge branch 'main' into metadata_delete
Browse files Browse the repository at this point in the history
  • Loading branch information
mbelton-buildkite committed Jul 19, 2023
2 parents d769e31 + 788386a commit cf1bcf3
Show file tree
Hide file tree
Showing 75 changed files with 1,782 additions and 243 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.19.1
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ or use [`rbenv`](https://github.com/rbenv/rbenv) to automatically select the cor
For non-containerized development, run:

```bash
# Check that you have Xcode Command Line Tools installed - required to build dependencies
xcode-select -p
# If not, install them
xcode-select --install
# Install dependencies
bin/setup
Expand Down
23 changes: 13 additions & 10 deletions data/content/agent_attributes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,10 @@ attributes:
- name: git-clone-mirror-flags
env_var: BUILDKITE_GIT_CLONE_MIRROR_FLAGS
default_value: "none"
experimental: true
experimental: false
required: false
desc: |
Flags to pass to the `git clone` command when used for mirroring. Refer to [Git mirrors](https://buildkite.com/docs/agent/v3#experimental-features-git-mirrors) for more information on this feature.
This is an experimental feature. To use it, set `experiment="git-mirrors"` in your agent configuration. Learn more about [Experimental features](https://buildkite.com/docs/agent/v3#experimental-features).
Flags to pass to the `git clone` command when used for mirroring. Refer to [Git mirrors](/docs/agent/v3#promoted-experiments-git-mirrors) for more information on this feature. Introduced in [v3.47.0](https://github.com/buildkite/agent/releases/tag/v3.47.0).
_Example:_ `-v --mirror`.
- name: git-fetch-flags
env_var: BUILDKITE_GIT_FETCH_FLAGS
Expand All @@ -105,18 +104,16 @@ attributes:
env_var: BUILDKITE_GIT_MIRRORS_LOCK_TIMEOUT
default_value: "300"
required: false
experimental: true
experimental: false
desc: |
Seconds to lock a git mirror during clone. Should exceed your longest checkout. Refer to [Git mirrors](https://buildkite.com/docs/agent/v3#experimental-features-git-mirrors) for more information on this feature.
This is an experimental feature. To use it, set `experiment="git-mirrors"` in your agent configuration. Learn more about [Experimental features](https://buildkite.com/docs/agent/v3#experimental-features).
Seconds to lock a git mirror during clone. Should exceed your longest checkout. Refer to [Git mirrors](/docs/agent/v3#promoted-experiments-git-mirrors) for more information on this feature. Introduced in [v3.47.0](https://github.com/buildkite/agent/releases/tag/v3.47.0).
- name: git-mirrors-path
env_var: BUILDKITE_GIT_MIRRORS_PATH
default_value: "none"
required: false
experimental: true
experimental: false
desc: |
Path to where mirrors of git repositories are stored. Refer to [Git mirrors](https://buildkite.com/docs/agent/v3#experimental-features-git-mirrors) for more information on this feature.
This is an experimental feature. To use it, set `experiment="git-mirrors"` in your agent configuration. Learn more about [Experimental features](https://buildkite.com/docs/agent/v3#experimental-features).
Path to where mirrors of git repositories are stored. Refer to [Git mirrors](/docs/agent/v3#promoted-experiments-git-mirrors) for more information on this feature. Introduced in [v3.47.0](https://github.com/buildkite/agent/releases/tag/v3.47.0).
_Example:_ `/tmp/buildkite-git-mirrors`
- name: health-check-addr
env_var: BUILDKITE_AGENT_HEALTH_CHECK_ADDR
Expand Down Expand Up @@ -181,6 +178,12 @@ attributes:
required: false
desc: |
Do not show colors in logging.
- name: no-ansi-timestamps
env_var: BUILDKITE_NO_ANSI_TIMESTAMPS
default_value: "false"
required: false
desc: |
Do not insert ANSI timestamp codes at the start of each line of job output.
- name: no-command-eval
env_var: BUILDKITE_NO_COMMAND_EVAL
default_value: "false"
Expand Down Expand Up @@ -307,7 +310,7 @@ attributes:
default_value: "false"
required: false
desc: |
Prepend timestamps on each line of output.
Prepend timestamps on each line of output. Has no effect unless --no-ansi-timestamps is also used.
- name: tracing-backend
env_var: BUILDKITE_TRACING_BACKEND
default_value: "none"
Expand Down
2 changes: 1 addition & 1 deletion data/content/environment_variables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ variables:
example: "git@github.com:acme-inc/my-project.git"
- name: BUILDKITE_REPO_MIRROR
desc: |
Only available if the experimental feature [git-mirrors](/docs/agent/v3#experimental-features-git-mirrors) is enabled. The path to the shared git mirror.
The path to the shared git mirror. Introduced in [v3.47.0](https://github.com/buildkite/agent/releases/tag/v3.47.0).
modifiable: false
example: "/tmp/buildkite-git-mirrors"
- name: BUILDKITE_RETRY_COUNT
Expand Down
Loading

0 comments on commit cf1bcf3

Please sign in to comment.