solana/ci/buildkite.yml

48 lines
1.5 KiB
YAML
Raw Normal View History

# Build steps that run on pushes and pull requests.
#
# Release tags use buildkite-release.yml instead
2018-05-21 23:02:54 -07:00
steps:
- command: "ci/shellcheck.sh"
2018-12-15 16:12:48 -08:00
name: "shellcheck"
2019-02-20 16:06:43 -08:00
timeout_in_minutes: 5
2019-06-20 07:43:31 -07:00
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_nightly_docker_image ci/test-checks.sh"
2018-12-15 16:12:48 -08:00
name: "checks"
2019-07-23 00:20:05 -07:00
timeout_in_minutes: 35
- wait
- command: "ci/test-stable-perf.sh"
2018-12-15 16:12:48 -08:00
name: "stable-perf"
2019-09-12 11:39:39 -07:00
timeout_in_minutes: 40
2019-04-10 17:05:39 -07:00
artifact_paths: "log-*.txt"
agents:
- "queue=cuda"
- command: "ci/test-bench.sh"
2018-12-15 16:12:48 -08:00
name: "bench"
2019-05-06 10:00:00 -07:00
timeout_in_minutes: 60
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-stable.sh"
2018-12-15 16:12:48 -08:00
name: "stable"
timeout_in_minutes: 40
2019-04-10 17:05:39 -07:00
artifact_paths: "log-*.txt"
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-local-cluster.sh"
name: "local-cluster"
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"
2018-12-17 10:11:02 -08:00
name: "coverage"
2019-06-20 08:55:13 -07:00
timeout_in_minutes: 40
2018-09-14 20:13:17 -07:00
# TODO: Fix and re-enable test-large-network.sh
# - command: "ci/test-large-network.sh || true"
2018-12-15 16:12:48 -08:00
# name: "large-network [ignored]"
2018-09-14 20:13:17 -07:00
# timeout_in_minutes: 20
# agents:
# - "queue=large"
- wait
- trigger: "solana-secondary"
2018-06-30 20:44:32 -07:00
branches: "!pull/*"
async: true
build:
message: "${BUILDKITE_MESSAGE}"
commit: "${BUILDKITE_COMMIT}"
branch: "${BUILDKITE_BRANCH}"
env:
TRIGGERED_BUILDKITE_TAG: "${BUILDKITE_TAG}"