-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpipeline.yml
More file actions
330 lines (329 loc) · 11.3 KB
/
pipeline.yml
File metadata and controls
330 lines (329 loc) · 11.3 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
env:
APP_NAME: ${BUILDKITE_PIPELINE_SLUG}
IMAGE_REPO: ghcr.io/theopenlane/${APP_NAME}
IMAGE_REPO_TC: ghcr.io/theopenlane/${APP_NAME}-tc
IMAGE_TAG: ${BUILDKITE_BUILD_NUMBER}-${BUILDKITE_COMMIT:0:8}
SONAR_HOST: "https://sonarcloud.io"
INCLUDE_TRUST_CENTER: "false"
GOPRIVATE: github.com/theopenlane/corejobs
steps:
- group: ":test_tube: Tests"
key: "tests"
steps:
- label: ":golangci-lint: lint :lint-roller:"
key: "lint"
if_changed:
- "**.go"
- .golangci.yaml
cancel_on_build_failing: true
command: "task go:tidy > /dev/null 2>&1 && task go:lint:ci"
plugins:
- docker#v5.13.0:
image: "ghcr.io/theopenlane/build-image:latest"
always-pull: true
- label: ":golang: go test"
key: "go_test"
if_changed:
- go.{mod,sum}
- "**.go"
cancel_on_build_failing: true
command: |
task go:tidy > /dev/null 2>&1
task go:test:cover
plugins:
- docker#v5.13.0:
image: "ghcr.io/theopenlane/build-image:latest"
always-pull: true
artifact_paths: ["coverage.out"]
- label: ":github: upload PR reports"
key: "scan-upload-pr"
if: build.pull_request.id != null
if_changed:
- go.{mod,sum}
- "**.go"
depends_on: ["go_test"]
plugins:
- cluster-secrets#v1.0.0:
variables:
SONAR_TOKEN: SONAR_TOKEN
- artifacts#v1.9.4:
download: "coverage.out"
step: "go_test"
- docker#v5.13.0:
image: "sonarsource/sonar-scanner-cli:11.2"
environment:
- "SONAR_TOKEN"
- "SONAR_HOST_URL=$SONAR_HOST"
- "SONAR_SCANNER_OPTS=-Dsonar.pullrequest.branch=$BUILDKITE_BRANCH -Dsonar.pullrequest.base=$BUILDKITE_PULL_REQUEST_BASE_BRANCH -Dsonar.pullrequest.key=$BUILDKITE_PULL_REQUEST"
- label: ":github: upload reports"
key: "scan-upload"
if_changed:
- go.{mod,sum}
- "**.go"
if: build.branch == "main"
depends_on: ["go_test"]
plugins:
- cluster-secrets#v1.0.0:
variables:
SONAR_TOKEN: SONAR_TOKEN
- artifacts#v1.9.4:
download: coverage.out
step: "go_test"
- docker#v5.13.0:
image: "sonarsource/sonar-scanner-cli:11.2"
environment:
- "SONAR_TOKEN"
- "SONAR_HOST_URL=$SONAR_HOST"
- group: ":golang: Builds"
key: "go-builds"
steps:
- label: ":golang: build"
key: "gobuild-server"
command: |
task go:tidy > /dev/null 2>&1
task go:build:ci
artifact_paths: "bin/${APP_NAME}"
plugins:
- docker#v5.13.0:
image: "ghcr.io/theopenlane/build-image:latest"
always_pull: true
environment:
- CGO_ENABLED=0
- GOOS=linux
- group: ":docker: Image Build"
depends_on: "go-builds"
key: "image-build"
steps:
- label: ":docker: docker pr build"
key: "docker-pr-build"
cancel_on_build_failing: true
if: build.branch != "main" && build.tag == null
if_changed:
- go.{mod,sum}
- "**.go"
matrix:
setup:
platform:
- amd64
- arm64
commands: |
#!/bin/bash
ls
plugins:
- cluster-secrets#v1.0.0:
variables:
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO}"
extra_tags:
- "${IMAGE_TAG}"
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: false
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
- BUILDTAGS=""
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'
- equinixmetal-buildkite/trivy#v1.22.0:
severity: CRITICAL,HIGH
ignore-unfixed: true
security-checks: config,secret,vuln
skip-files: "cosign.key,Dockerfile.dev"
trivy-version: "0.69.2"
- label: ":docker: docker pr build with trust center"
key: "docker-pr-build-tc"
cancel_on_build_failing: true
if: build.branch != "main" && build.tag == null
if_changed:
- go.{mod,sum}
- "**.go"
matrix:
setup:
platform:
- amd64
- arm64
commands: |
#!/bin/bash
ls
plugins:
- cluster-secrets#v1.0.0:
variables:
GITHUB_SSH_PRIVATE_KEY: GITHUB_SSH_PRIVATE_KEY
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO_TC}"
extra_tags:
- "${IMAGE_TAG}"
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: false
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
- BUILDTAGS=trustcenter
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'
- equinixmetal-buildkite/trivy#v1.22.0:
severity: CRITICAL,HIGH
ignore-unfixed: true
security-checks: config,secret,vuln
skip-files: "cosign.key,Dockerfile.dev"
trivy-version: "0.69.2"
- label: ":docker: docker build and publish with tags"
key: "docker-build"
cancel_on_build_failing: true
matrix:
setup:
platform:
- amd64
- arm64
if: build.branch == "main"
commands: |
#!/bin/bash
ls
plugins:
- cluster-secrets#v1.0.0:
variables:
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO}"
extra_tags:
- "${IMAGE_TAG}"
- latest
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: true
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'
- equinixmetal-buildkite/trivy#v1.22.0:
severity: CRITICAL,HIGH
ignore-unfixed: true
security-checks: config,secret,vuln
skip-files: "cosign.key,Dockerfile.dev"
trivy-version: "0.69.2"
- label: ":docker: docker build and publish with tags includes trust center"
key: "docker-build-tc"
cancel_on_build_failing: true
matrix:
setup:
platform:
- amd64
- arm64
if: build.branch == "main"
commands: |
#!/bin/bash
ls
plugins:
- cluster-secrets#v1.0.0:
variables:
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
GITHUB_SSH_PRIVATE_KEY: GITHUB_SSH_PRIVATE_KEY
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO_TC}"
extra_tags:
- "${IMAGE_TAG}"
- latest
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: true
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
- BUILDTAGS=trustcenter
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'
- equinixmetal-buildkite/trivy#v1.22.0:
severity: CRITICAL,HIGH
ignore-unfixed: true
security-checks: config,secret,vuln
skip-files: "cosign.key,Dockerfile.dev"
trivy-version: "0.69.2"
- label: ":docker: docker build and publish"
key: "docker-build-and-tag"
if: build.tag != null && build.tag !~ /trustcenter\//
matrix:
setup:
platform:
- amd64
- arm64
commands: |
#!/bin/bash
plugins:
- cluster-secrets#v1.0.0:
variables:
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO}"
extra_tags:
- "${BUILDKITE_TAG}"
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: true
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'
- label: ":docker: docker build and publish with trust center"
key: "docker-build-and-tag-tc"
if: build.tag != null && build.tag !~ /trustcenter\//
matrix:
setup:
platform:
- amd64
- arm64
commands: |
#!/bin/bash
plugins:
- cluster-secrets#v1.0.0:
variables:
SECRET_GHCR_PUBLISH_TOKEN: SECRET_GHCR_PUBLISH_TOKEN
GITHUB_SSH_PRIVATE_KEY: GITHUB_SSH_PRIVATE_KEY
- docker-login#v3.0.0:
username: openlane-bender
password-env: SECRET_GHCR_PUBLISH_TOKEN
server: ghcr.io
- theopenlane/docker-metadata#v1.0.1:
images:
- "${IMAGE_REPO_TC}"
extra_tags:
- "${BUILDKITE_TAG}"
tag_prefix: "{{matrix.platform}}-"
- theopenlane/container-build#v1.1.1:
dockerfile: docker/Dockerfile
push: true
platforms: linux/{{matrix.platform}}
build-args:
- NAME=${APP_NAME}
- BUILDTAGS=trustcenter
secret-file: 'id=id_ed25519,src=$HOME/.ssh/id_ed25519'