-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathpipeline.yml
More file actions
434 lines (402 loc) · 13.5 KB
/
Copy pathpipeline.yml
File metadata and controls
434 lines (402 loc) · 13.5 KB
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
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: Lint"
key: check-code-committed
command: .buildkite/steps/check-code-committed.sh
if_changed:
- go.{mod,sum}
- "**.go"
- .buildkite/steps/check-code-committed.sh
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
mount-buildkite-agent: true
run: lint
- name: ":go::robot_face: Check protobuf generation"
key: check-protobuf-genreation
command: .buildkite/steps/check-protobuf-generation.sh
if_changed:
- api/proto/**
- .buildkite/steps/check-protobuf-generation.sh
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
mount-buildkite-agent: true
run: lint
- group: ":go::scientist: Tests and Coverage"
if_changed:
- go.{mod,sum}
- "**.go"
- "**/fixtures/**"
- .buildkite/steps/{tests,test-coverage-report}.sh
steps:
- name: ":linux: Linux AMD64 Tests"
key: test-linux-amd64
command: ".buildkite/steps/tests.sh"
parallelism: 2
artifact_paths:
- junit-*.xml
- "coverage-*/**"
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
propagate-environment: true
run: agent
- test-collector#v1.11.0:
files: "junit-*.xml"
format: "junit"
tags:
- "os=linux"
- "arch=amd64"
- "race=false"
- name: ":linux: Linux ARM64 Tests"
key: test-linux-arm64
command: ".buildkite/steps/tests.sh"
parallelism: 2
artifact_paths:
- junit-*.xml
- "coverage-*/**"
agents:
queue: $AGENT_RUNNERS_LINUX_ARM64_QUEUE
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
propagate-environment: true
run: agent
- test-collector#v1.11.0:
files: "junit-*.xml"
format: "junit"
tags:
- "os=linux"
- "arch=arm64"
- "race=false"
- name: ":windows: Windows AMD64 Tests"
key: test-windows
command: "bash .buildkite\\steps\\tests.sh"
parallelism: 2
artifact_paths:
- junit-*.xml
- "coverage-*/**"
agents:
queue: $AGENT_RUNNERS_WINDOWS_QUEUE
plugins:
- test-collector#v1.11.0:
files: "junit-*.xml"
format: "junit"
tags:
- "os=windows"
- "arch=arm64"
- "race=false"
- name: ":satellite: Detect Data Races"
key: test-race-linux-arm64
command: ".buildkite/steps/tests.sh -race"
# Extra parallelism because this data race test is slow
parallelism: 3
artifact_paths:
- junit-*.xml
- "coverage-*/**"
agents:
queue: $AGENT_RUNNERS_LINUX_ARM64_QUEUE
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
propagate-environment: true
run: agent
- test-collector#v1.11.0:
files: "junit-*.xml"
format: "junit"
tags:
- "os=linux"
- "arch=arm64"
- "race=true"
- name: ":coverage: Test coverage report Linux ARM64"
key: test-coverage-linux-arm64
command: ".buildkite/steps/test-coverage-report.sh coverage-linux-arm64"
artifact_paths:
- "cover.html"
- "cover.out"
depends_on:
- test-linux-arm64
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- artifacts#v1.9.4:
download: "coverage-linux-arm64/**"
- name: ":coverage: Test coverage report Linux AMD64"
key: test-coverage-linux-amd64
command: ".buildkite/steps/test-coverage-report.sh coverage-linux-amd64"
artifact_paths:
- "cover.html"
- "cover.out"
depends_on:
- test-linux-amd64
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- artifacts#v1.9.4:
download: "coverage-linux-amd64/**"
- name: ":coverage: Test coverage report Linux ARM64 Race"
key: test-coverage-linux-arm64-race
command: ".buildkite/steps/test-coverage-report.sh coverage-linux-arm64-race"
artifact_paths:
- "cover.html"
- "cover.out"
depends_on:
- test-race-linux-arm64
plugins:
- docker-compose#v4.14.0:
config: .buildkite/docker-compose.yml
cli-version: 2
run: agent
- artifacts#v1.9.4:
download: "coverage-linux-arm64-race/**"
- 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
# --- end Tests and Coverage ---
- 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"
# --- end Binary builds ---
- label: ":end::two::end: E2E Testing"
key: e2e-tests
depends_on: build-binary
trigger: agent-e2e-tests
async: false
build:
message: "${BUILDKITE_MESSAGE}"
commit: "${BUILDKITE_COMMIT}"
branch: "${BUILDKITE_BRANCH}"
env:
BUILDKITE_PULL_REQUEST: "${BUILDKITE_PULL_REQUEST}"
BUILDKITE_PULL_REQUEST_BASE_BRANCH: "${BUILDKITE_PULL_REQUEST_BASE_BRANCH}"
BUILDKITE_PULL_REQUEST_REPO: "${BUILDKITE_PULL_REQUEST_REPO}"
- 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.4.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
session-tags:
- organization_slug
- organization_id
- pipeline_slug
- 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.4.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
session-tags:
- organization_slug
- organization_id
- pipeline_slug
- 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.4.0:
role_arn: "arn:aws:iam::${BUILD_AWS_ACCOUNT_ID}:role/${BUILD_AWS_ROLE_NAME}"
session-tags:
- organization_slug
- organization_id
- pipeline_slug
- 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
# --- end Docker Image tests ---
- 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: ":memo: Trigger docs draft"
if: build.branch == "main"
soft_fail: true
command: .buildkite/steps/trigger-docs-draft.sh
- 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)$$/