ci: group check steps into an individual queue (#30309)

* ci: group check steps into an individual queue

* lint: add quote
This commit is contained in:
Yihau Chen 2023-02-15 13:03:17 +08:00 committed by GitHub
parent 57337058d3
commit 0d96d1db33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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