-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathpipeline.yml
300 lines (277 loc) · 9.47 KB
/
pipeline.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
env:
DRY_RUN: false # set to true to disable publishing releases
AGENT_RUNNERS_LINUX_QUEUE: "${AGENT_RUNNERS_LINUX_QUEUE:-agent-runners-linux-amd64}"
AGENT_RUNNERS_LINUX_ARM64_QUEUE: "${AGENT_RUNNERS_LINUX_ARM64_QUEUE:-agent-runners-linux-arm64}"
AGENT_RUNNERS_WINDOWS_QUEUE: "${AGENT_RUNNERS_WINDOWS_QUEUE:-agent-runners-windows-amd64}"
AGENT_BUILDERS_QUEUE: "${AGENT_BUILDERS_QUEUE:-elastic-builders}"
AGENT_BUILDERS_ARM64_QUEUE: "${AGENT_BUILDERS_QUEUE:-elastic-builders}"
agents:
queue: "$AGENT_RUNNERS_LINUX_QUEUE"
steps:
- name: ":go::robot_face: Check Code Committed"
key: check-code-committed
command: .buildkite/steps/check-code-committed.sh
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- name: ":linux: Linux AMD64 Tests"
key: test-linux-amd64
command: ".buildkite/steps/tests.sh"
artifact_paths: junit-*.xml
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- test-collector#v1.2.0:
files: "junit-*.xml"
format: "junit"
- artifacts#v1.9.0:
upload: "cover.{html,out}"
- name: ":linux: Linux ARM64 Tests"
key: test-linux-arm64
command: ".buildkite/steps/tests.sh"
artifact_paths: junit-*.xml
agents:
queue: $AGENT_RUNNERS_LINUX_ARM64_QUEUE
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- test-collector#v1.2.0:
files: "junit-*.xml"
format: "junit"
- artifacts#v1.9.0:
upload: "cover.{html,out}"
- name: ":satellite: Detect Data Races"
key: test-race-linux-arm64
command: ".buildkite/steps/tests.sh -race"
artifact_paths: junit-*.xml
agents:
queue: $AGENT_RUNNERS_LINUX_ARM64_QUEUE
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- test-collector#v1.2.0:
files: "junit-*.xml"
format: "junit"
- artifacts#v1.9.0:
upload: "cover.{html,out}"
- name: ":windows: Windows AMD64 Tests"
key: test-windows
command: "bash .buildkite\\steps\\tests.sh"
artifact_paths: junit-*.xml
agents:
queue: $AGENT_RUNNERS_WINDOWS_QUEUE
plugins:
- test-collector#v1.2.0:
files: "junit-*.xml"
format: "junit"
- artifacts#v1.9.0:
upload: "cover.{html,out}"
- label: ":writing_hand: Annotate with Test Failures"
depends_on:
- test-linux-amd64
- test-race-linux-arm64
- test-linux-arm64
- test-windows
allow_dependency_failure: true
plugins:
- junit-annotate#v1.6.0:
artifacts: junit-*.xml
- group: ":hammer_and_wrench: Binary builds"
steps:
- name: ":{{matrix.os}}: Build {{matrix.os}} {{matrix.arch}} binary"
command: ".buildkite/steps/build-binary.sh {{matrix.os}} {{matrix.arch}}"
key: build-binary
depends_on:
# don't wait for slower windows tests
- test-linux-amd64
- test-linux-arm64
artifact_paths: "pkg/*"
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- generate-provenance-attestation#v1.1.0:
artifacts: "pkg/*"
attestation_name: "buildkite-agent-{{matrix.os}}-{{matrix.arch}}.build-attestation.json"
matrix:
setup:
os:
- darwin
- freebsd
- linux
- openbsd
- windows
arch:
- "386"
- amd64
- arm64
adjustments:
- with: { os: darwin, arch: "386" }
skip: "macOS no longer supports x86 binaries"
- with: { os: dragonflybsd, arch: amd64 }
- with: { os: freebsd, arch: arm64 }
skip: "arm64 FreeBSD is not currently supported"
- with: { os: linux, arch: arm }
- with: { os: linux, arch: armhf }
- with: { os: linux, arch: ppc64 }
- with: { os: linux, arch: ppc64le }
- with: { os: linux, arch: mips64le }
- with: { os: linux, arch: s390x }
- with: { os: linux, arch: riscv64 }
- with: { os: netbsd, arch: amd64 }
- with: { os: openbsd, arch: arm64 }
skip: "arm64 OpenBSD is not currently supported"
- label: ":bathtub: Check version string is clean"
key: check-version-string
depends_on: build-binary
command: .buildkite/steps/check-version-string.sh
- name: ":technologist: Test bk cli + Agent cli"
key: test-bk-cli
depends_on: build-binary
command: ".buildkite/steps/test-bk.sh"
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
env:
- BUILDKITE_AGENT_ACCESS_TOKEN
- BUILDKITE_BUILD_ID
- BUILDKITE_JOB_ID
volumes:
- "/usr/bin/buildkite-agent:/usr/bin/buildkite-agent"
- name: ":mag: Extract Agent Version Metadata"
key: set-metadata
command: ".buildkite/steps/extract-agent-version-metadata.sh"
- group: ":docker: Docker Image Builds"
steps:
- name: ":docker: {{matrix}} image build"
key: build-docker
plugins:
- aws-assume-role-with-web-identity#v1.0.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
- ecr#v2.9.0:
login: true
account_ids: "${BUILD_AWS_ACCOUNT_ID}"
region: "us-east-1"
agents:
queue: $AGENT_BUILDERS_QUEUE
depends_on:
- build-binary
- set-metadata
command: ".buildkite/steps/build-docker-image.sh {{matrix}}"
matrix:
setup:
- "alpine"
- "alpine-k8s"
- "ubuntu-20.04"
- "ubuntu-22.04"
- "ubuntu-24.04"
- "sidecar"
- group: ":docker: Docker Image Tests"
steps:
- name: ":docker: {{matrix.variant}} amd64 image test"
key: test-docker-amd64
agents:
queue: $AGENT_BUILDERS_QUEUE
depends_on:
- build-docker
command: .buildkite/steps/test-docker-image.sh {{matrix.variant}}
plugins:
- aws-assume-role-with-web-identity#v1.0.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
- ecr#v2.9.0:
login: true
account_ids: "${BUILD_AWS_ACCOUNT_ID}"
region: "us-east-1"
matrix:
setup:
variant:
- alpine
- alpine-k8s
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- sidecar
- name: ":docker: {{matrix.variant}} arm64 image test"
plugins:
- aws-assume-role-with-web-identity#v1.0.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
- ecr#v2.9.0:
login: true
account_ids: "${BUILD_AWS_ACCOUNT_ID}"
region: "us-east-1"
key: test-docker-arm64
agents:
queue: $AGENT_BUILDERS_ARM64_QUEUE
depends_on:
- build-docker
command: .buildkite/steps/test-docker-image.sh {{matrix.variant}}
matrix:
setup:
variant:
- alpine
- alpine-k8s
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- sidecar
- name: ":debian: Debian package build"
key: build-debian-packages
depends_on:
- build-binary
- set-metadata
command: ".buildkite/steps/build-debian-packages.sh"
artifact_paths: "deb/**/*"
plugins:
- generate-provenance-attestation#v1.1.0:
artifacts: "deb/*"
attestation_name: "buildkite-agent-debian-packages.package-attestation.json"
- name: ":redhat: RPM Package build"
key: build-rpm-packages
depends_on:
- build-binary
- set-metadata
command: ".buildkite/steps/build-rpm-packages.sh"
artifact_paths: "rpm/**/*"
plugins:
- generate-provenance-attestation#v1.1.0:
artifacts: "rpm/*"
attestation_name: "buildkite-agent-rpm-packages.package-attestation.json"
- name: ":github: Build Github Release"
key: build-github-release
depends_on:
- build-binary
- set-metadata
command: ".buildkite/steps/build-github-release.sh"
artifact_paths: "releases/**/*"
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.release.yml
run: github-release
- generate-provenance-attestation#v1.1.0:
artifacts: "releases/*.tar.gz;releases/*.zip"
attestation_name: "buildkite-agent-github-releases.attestation.json"
- name: ":pipeline: Upload Release Pipeline"
key: upload-release-steps
depends_on:
- check-code-committed
- check-version-string
- test-windows
- test-bk-cli
- test-docker-amd64
- test-docker-arm64
- build-rpm-packages
- build-debian-packages
- build-github-release
command: ".buildkite/steps/upload-release-steps.sh"
if: build.env("DRY_RUN") == "true" || build.branch =~ /^(main|.*-.*-stable)$$/