2019-08-01 13:11:42 -07:00
|
|
|
# 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:
|
2018-12-01 11:11:16 -08:00
|
|
|
- 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-11-08 19:40:03 -08:00
|
|
|
timeout_in_minutes: 20
|
2018-12-01 11:11:16 -08:00
|
|
|
- wait
|
2018-11-21 12:16:16 -08:00
|
|
|
- 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"
|
2018-11-21 12:16:16 -08:00
|
|
|
agents:
|
|
|
|
- "queue=cuda"
|
|
|
|
- command: "ci/test-bench.sh"
|
2018-12-15 16:12:48 -08:00
|
|
|
name: "bench"
|
2019-11-08 19:40:03 -08:00
|
|
|
timeout_in_minutes: 30
|
2019-03-14 19:41:05 -07:00
|
|
|
- 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"
|
2019-12-22 19:14:07 -08:00
|
|
|
timeout_in_minutes: 60
|
2019-04-10 17:05:39 -07:00
|
|
|
artifact_paths: "log-*.txt"
|
2020-03-11 14:46:17 -07:00
|
|
|
agents:
|
|
|
|
- "queue=rpc-test-capable"
|
2019-11-08 19:40:03 -08:00
|
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-move.sh"
|
|
|
|
name: "move"
|
|
|
|
timeout_in_minutes: 20
|
2019-09-18 13:10:50 -07:00
|
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-local-cluster.sh"
|
|
|
|
name: "local-cluster"
|
2019-11-08 19:40:03 -08:00
|
|
|
timeout_in_minutes: 30
|
2019-09-18 13:10:50 -07:00
|
|
|
artifact_paths: "log-*.txt"
|
2019-03-14 19:41:05 -07:00
|
|
|
- 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-11-08 19:40:03 -08:00
|
|
|
timeout_in_minutes: 30
|
2020-03-11 14:46:17 -07:00
|
|
|
agents:
|
|
|
|
- "queue=rpc-test-capable"
|
2018-06-24 09:53:40 -07:00
|
|
|
- wait
|
2018-11-05 08:47:12 -08:00
|
|
|
- trigger: "solana-secondary"
|
2018-06-30 20:44:32 -07:00
|
|
|
branches: "!pull/*"
|
2018-06-30 19:22:24 -07:00
|
|
|
async: true
|
2018-07-12 23:11:22 -07:00
|
|
|
build:
|
|
|
|
message: "${BUILDKITE_MESSAGE}"
|
|
|
|
commit: "${BUILDKITE_COMMIT}"
|
|
|
|
branch: "${BUILDKITE_BRANCH}"
|
|
|
|
env:
|
|
|
|
TRIGGERED_BUILDKITE_TAG: "${BUILDKITE_TAG}"
|