27 lines
889 B
YAML
27 lines
889 B
YAML
# These steps are conditionally triggered by ci/buildkite.yml when files
|
|
# other than those in docs/ are modified
|
|
|
|
steps:
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_nightly_docker_image ci/test-coverage.sh"
|
|
name: "coverage"
|
|
timeout_in_minutes: 30
|
|
- wait
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-stable.sh"
|
|
name: "stable"
|
|
timeout_in_minutes: 60
|
|
artifact_paths: "log-*.txt"
|
|
- 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: 30
|
|
- command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-local-cluster.sh"
|
|
name: "local-cluster"
|
|
timeout_in_minutes: 45
|
|
artifact_paths: "log-*.txt"
|