44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
# Build steps that run on pushes and pull requests.
|
|
#
|
|
# Release tags use buildkite-release.yml instead
|
|
steps:
|
|
- command: "ci/shellcheck.sh"
|
|
name: "shellcheck"
|
|
timeout_in_minutes: 5
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_nightly_docker_image ci/test-checks.sh"
|
|
name: "checks"
|
|
timeout_in_minutes: 35
|
|
- wait
|
|
- command: "ci/test-stable-perf.sh"
|
|
name: "stable-perf"
|
|
timeout_in_minutes: 40
|
|
artifact_paths: "log-*.txt"
|
|
agents:
|
|
- "queue=cuda"
|
|
- command: "ci/test-bench.sh"
|
|
name: "bench"
|
|
timeout_in_minutes: 60
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-stable.sh"
|
|
name: "stable"
|
|
timeout_in_minutes: 40
|
|
artifact_paths: "log-*.txt"
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_nightly_docker_image ci/test-coverage.sh"
|
|
name: "coverage"
|
|
timeout_in_minutes: 40
|
|
# TODO: Fix and re-enable test-large-network.sh
|
|
# - command: "ci/test-large-network.sh || true"
|
|
# name: "large-network [ignored]"
|
|
# timeout_in_minutes: 20
|
|
# agents:
|
|
# - "queue=large"
|
|
- wait
|
|
- trigger: "solana-secondary"
|
|
branches: "!pull/*"
|
|
async: true
|
|
build:
|
|
message: "${BUILDKITE_MESSAGE}"
|
|
commit: "${BUILDKITE_COMMIT}"
|
|
branch: "${BUILDKITE_BRANCH}"
|
|
env:
|
|
TRIGGERED_BUILDKITE_TAG: "${BUILDKITE_TAG}"
|