Skip to content

Commit

Permalink
ci: group check steps into an individual queue (#30309)
Browse files Browse the repository at this point in the history
* ci: group check steps into an individual queue

* lint: add quote
  • Loading branch information
yihau authored Feb 15, 2023
1 parent 5733705 commit 0d96d1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/buildkite-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ command_step() {
timeout_in_minutes: $3
artifact_paths: "log-*.txt"
agents:
queue: "solana"
queue: "${4:-solana}"
EOF
}

Expand All @@ -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...
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 0d96d1d

Please sign in to comment.