From d709496c3b13e1ac8c4ee005b24e205af6dc177e Mon Sep 17 00:00:00 2001 From: Giles Gaskell Date: Fri, 27 Feb 2026 13:37:00 +1100 Subject: [PATCH 1/2] Test only --- pages/agent.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/agent.md b/pages/agent.md index 13a21308a5b..cf00d1e0e24 100644 --- a/pages/agent.md +++ b/pages/agent.md @@ -8,6 +8,8 @@ This page provides Buildkite organization administrators with an overview of the If you're new to Buildkite Pipelines, run through the [Getting started with Pipelines](/docs/pipelines/getting-started) tutorial, which will initially set you up to run [Buildkite hosted agents](/docs/agent/buildkite-hosted). From there, you can decide whether to continue using Buildkite hosted agents, or set yourself up to run [self-hosted agents](/docs/agent/self-hosted). +Test + ## Self-hosted and Buildkite hosted agents compared The following table lists key feature differences between [self-hosted](/docs/agent/self-hosted) and [Buildkite hosted](/docs/agent/buildkite-hosted) agents. If you are looking to establish, expand or modify your Buildkite agent infrastructure, this table should help you choose which path or paths to take. From ff030e1ce2b1f9e57dfa02d43302504088f26aeb Mon Sep 17 00:00:00 2001 From: Giles Gaskell Date: Fri, 27 Feb 2026 14:02:27 +1100 Subject: [PATCH 2/2] Try support for multiple queues for different pipelines. --- .buildkite/pipeline.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 857403aa444..30acd6f889d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -52,7 +52,7 @@ steps: if_changed: pages/agent/cli/help/*.md command: ./scripts/update-agent-help.sh agents: - queue: hosted-m + queue: "${AGENT_QUEUE:-hosted-m}" plugins: - docker#v5.13.0: image: "golang:1.24" @@ -63,7 +63,7 @@ steps: if_changed: pages/platform/cli/*.md command: ./scripts/update-bkcli-help.sh agents: - queue: hosted-m + queue: "${AGENT_QUEUE:-hosted-m}" plugins: - docker#v5.13.0: image: "golang:1.25" @@ -74,7 +74,7 @@ steps: if_changed: pages/agent/self_hosted/configure/experiments.md command: ./scripts/update-agent-experiments.sh agents: - queue: hosted-m + queue: "${AGENT_QUEUE:-hosted-m}" plugins: - docker#v5.13.0: image: "ruby:3.3" @@ -85,7 +85,7 @@ steps: if_changed: pages/agent/self_hosted/versions_directory.md command: ./scripts/update-agent-versions-directory.sh agents: - queue: hosted-m + queue: "${AGENT_QUEUE:-hosted-m}" plugins: - docker#v5.13.0: image: "ruby:3.3"