-
Notifications
You must be signed in to change notification settings - Fork 165
/
buildkite-secondary.yml
51 lines (51 loc) · 1.39 KB
/
buildkite-secondary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Build steps that run after the primary pipeline on pushes and tags.
# Pull requests to not run these steps.
steps:
- name: "cargo audit"
command: "ci/docker-run-default-image.sh ci/do-audit.sh"
agents:
queue: "release-build"
timeout_in_minutes: 10
- wait
- name: "publish tarball (x86_64-unknown-linux-gnu)"
command: "ci/publish-tarball.sh"
agents:
queue: "release-build"
timeout_in_minutes: 60
- name: "publish installer"
command: "ci/publish-installer.sh"
agents:
queue: "release-build"
timeout_in_minutes: 5
# - wait
# - name: "publish docker"
# command: "sdk/docker-solana/build.sh"
# agents:
# queue: "release-build"
# timeout_in_minutes: 60
# - name: "publish crate"
# command: "ci/publish-crate.sh"
# agents:
# queue: "release-build"
# retry:
# manual:
# permit_on_passed: true
# timeout_in_minutes: 240
# branches: "!master"
# - name: "publish tarball (aarch64-apple-darwin)"
# command: "ci/publish-tarball.sh"
# agents:
# queue: "release-build-aarch64-apple-darwin"
# retry:
# manual:
# permit_on_passed: true
# timeout_in_minutes: 60
# - name: "publish tarball (x86_64-apple-darwin)"
# command: "ci/publish-tarball.sh"
# agents:
# queue: "release-build-x86_64-apple-darwin"
# retry:
# manual:
# permit_on_passed: true
# timeout_in_minutes: 60