From 921994e58875160605b32d8147395c0f3512a919 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 11 Mar 2020 19:18:10 -0700 Subject: [PATCH] Restrict which nodes can run stable and coverage (#8807) automerge --- ci/buildkite.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/buildkite.yml b/ci/buildkite.yml index 9b04094b03..e35048d546 100644 --- a/ci/buildkite.yml +++ b/ci/buildkite.yml @@ -22,6 +22,8 @@ steps: name: "stable" timeout_in_minutes: 60 artifact_paths: "log-*.txt" + agents: + - "queue=rpc-test-capable" - command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-move.sh" name: "move" timeout_in_minutes: 20 @@ -32,6 +34,8 @@ steps: - command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_nightly_docker_image ci/test-coverage.sh" name: "coverage" timeout_in_minutes: 30 + agents: + - "queue=rpc-test-capable" - wait - trigger: "solana-secondary" branches: "!pull/*"