File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ cat << EOF | tee /dev/tty | buildkite-agent pipeline upload
4+ steps:
5+ - name: "checks"
6+ command: "ci/docker-run-default-image.sh ci/test-checks.sh"
7+ timeout_in_minutes: 20
8+ agents:
9+ queue: "default"
10+
11+ - name: "frozen-abi"
12+ command: "ci/docker-run-default-image.sh ./test-abi.sh"
13+ timeout_in_minutes: 15
14+ agents:
15+ queue: "default"
16+
17+ - wait
18+
19+ - group: "stable"
20+ steps:
21+ - name: "partitions"
22+ command: "ci/docker-run-default-image.sh ci/stable/run-partition.sh"
23+ timeout_in_minutes: 40
24+ agents:
25+ queue: "default"
26+ parallelism: 2
27+ retry:
28+ automatic:
29+ - limit: 3
30+
31+ - name: "local-cluster"
32+ command: "ci/docker-run-default-image.sh ci/stable/run-local-cluster-partially.sh"
33+ timeout_in_minutes: 30
34+ agents:
35+ queue: "default"
36+ parallelism: 4
37+ retry:
38+ automatic:
39+ - limit: 3
40+
41+ - name: "localnet"
42+ command: "ci/docker-run-default-image.sh ci/stable/run-localnet.sh"
43+ timeout_in_minutes: 30
44+ agents:
45+ queue: "default"
46+ EOF
You can’t perform that action at this time.
0 commit comments