From 0d96d1db33b44b5ecddd329472a0ebd0adbcdb95 Mon Sep 17 00:00:00 2001 From: Yihau Chen Date: Wed, 15 Feb 2023 13:03:17 +0800 Subject: [PATCH] ci: group check steps into an individual queue (#30309) * ci: group check steps into an individual queue * lint: add quote --- ci/buildkite-pipeline.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/buildkite-pipeline.sh b/ci/buildkite-pipeline.sh index 2daa1f02b5..3d1d35a155 100755 --- a/ci/buildkite-pipeline.sh +++ b/ci/buildkite-pipeline.sh @@ -114,7 +114,7 @@ command_step() { timeout_in_minutes: $3 artifact_paths: "log-*.txt" agents: - queue: "solana" + queue: "${4:-solana}" EOF } @@ -139,7 +139,7 @@ wait_step() { } all_test_steps() { - command_step checks ". ci/rust-version.sh; ci/docker-run.sh \$\$rust_nightly_docker_image ci/test-checks.sh" 20 + command_step checks ". ci/rust-version.sh; ci/docker-run.sh \$\$rust_nightly_docker_image ci/test-checks.sh" 20 check wait_step # Coverage... @@ -308,12 +308,12 @@ EOF } pull_or_push_steps() { - command_step sanity "ci/test-sanity.sh" 5 + command_step sanity "ci/test-sanity.sh" 5 check wait_step # Check for any .sh file changes if affects .sh$; then - command_step shellcheck "ci/shellcheck.sh" 5 + command_step shellcheck "ci/shellcheck.sh" 5 check wait_step fi