From 293fff90d3f8594c80fe0ed2bb7543e32139960e Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 11 Mar 2020 14:46:17 -0700 Subject: [PATCH] Restrict which nodes can run stable and coverage Band-aid fix until https://github.com/solana-labs/solana/issues/8798 is resolved --- 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/*"