-
Notifications
You must be signed in to change notification settings - Fork 155
/
.drone.yml
547 lines (546 loc) · 14.3 KB
/
.drone.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
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
---
clone:
retries: 3
depends_on: []
image_pull_secrets:
- gcr
- gar
kind: pipeline
name: test-pr
node:
type: no-parallel
platform:
arch: amd64
os: linux
services:
- environment:
GF_FEATURE_TOGGLES_ENABLE: renderAuthJWT
GF_PATHS_PROVISIONING: /drone/src/scripts/drone/provisioning
image: grafana/grafana-enterprise:latest
name: grafana
steps:
- commands:
- mkdir -p bin
- curl -fL -o bin/grabpl https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v3.0.20/grabpl
- chmod +x bin/grabpl
image: byrnedo/alpine-curl:0.1.8
name: grabpl
- commands:
- . ~/.init-nvm.sh
- yarn install --frozen-lockfile --no-progress
depends_on:
- grabpl
environment:
PUPPETEER_CACHE_DIR: /drone/src/cache
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-install
- commands:
- . ~/.init-nvm.sh
- yarn build
depends_on:
- yarn-install
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-build
- commands:
- dockerize -wait http://grafana:3000 -timeout 120s
image: jwilder/dockerize:0.6.1
name: wait-for-grafana
- commands:
- yarn test-ci
depends_on:
- wait-for-grafana
- yarn-build
environment:
CI: "true"
PUPPETEER_CACHE_DIR: /drone/src/cache
image: us-docker.pkg.dev/grafanalabs-dev/grafana-ci/docker-puppeteer:2.0.0
name: yarn-test
- commands:
- . ~/.init-nvm.sh
- echo "Starting veracode scan..."
- '# Increase heap size or the scanner will die.'
- export _JAVA_OPTIONS=-Xmx4g
- mkdir -p ci/jobs/security_scan
- curl -sSL https://download.sourceclear.com/ci.sh | sh -s scan --skip-compile --quick
--allow-dirty
depends_on:
- yarn-build
environment:
SRCCLR_API_TOKEN:
from_secret: srcclr_api_token
failure: ignore
image: grafana/grafana-plugin-ci:1.9.0
name: security-scan
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc || true
- ./scripts/archive_target.sh linux-x64-glibc
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh darwin-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-darwin-x64-unknown || true
- ./scripts/archive_target.sh darwin-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-darwin-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh win32-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-win32-x64-unknown || true
- ./scripts/archive_target.sh win32-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-win32-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc true plugin-linux-x64-glibc-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc-no-chromium ||
true
- ./scripts/archive_target.sh linux-x64-glibc plugin-linux-x64-glibc-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc-no-chromium
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh alpine-x64-unknown true plugin-alpine-x64-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-alpine-x64-no-chromium || true
- ./scripts/archive_target.sh alpine-x64-unknown plugin-alpine-x64-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-alpine-x64-no-chromium
trigger:
event:
- pull_request
type: docker
volumes:
- host:
path: /var/run/docker.sock
name: docker
---
clone:
retries: 3
depends_on: []
image_pull_secrets:
- gcr
- gar
kind: pipeline
name: test-master
node:
type: no-parallel
platform:
arch: amd64
os: linux
services:
- environment:
GF_FEATURE_TOGGLES_ENABLE: renderAuthJWT
GF_PATHS_PROVISIONING: /drone/src/scripts/drone/provisioning
image: grafana/grafana-enterprise:latest
name: grafana
steps:
- commands:
- mkdir -p bin
- curl -fL -o bin/grabpl https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v3.0.20/grabpl
- chmod +x bin/grabpl
image: byrnedo/alpine-curl:0.1.8
name: grabpl
- commands:
- . ~/.init-nvm.sh
- yarn install --frozen-lockfile --no-progress
depends_on:
- grabpl
environment:
PUPPETEER_CACHE_DIR: /drone/src/cache
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-install
- commands:
- . ~/.init-nvm.sh
- yarn build
depends_on:
- yarn-install
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-build
- commands:
- dockerize -wait http://grafana:3000 -timeout 120s
image: jwilder/dockerize:0.6.1
name: wait-for-grafana
- commands:
- yarn test-ci
depends_on:
- wait-for-grafana
- yarn-build
environment:
CI: "true"
PUPPETEER_CACHE_DIR: /drone/src/cache
image: us-docker.pkg.dev/grafanalabs-dev/grafana-ci/docker-puppeteer:2.0.0
name: yarn-test
- commands:
- . ~/.init-nvm.sh
- echo "Starting veracode scan..."
- '# Increase heap size or the scanner will die.'
- export _JAVA_OPTIONS=-Xmx4g
- mkdir -p ci/jobs/security_scan
- curl -sSL https://download.sourceclear.com/ci.sh | sh -s scan --skip-compile --quick
--allow-dirty
depends_on:
- yarn-build
environment:
SRCCLR_API_TOKEN:
from_secret: srcclr_api_token
failure: ignore
image: grafana/grafana-plugin-ci:1.9.0
name: security-scan
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc
- ./scripts/archive_target.sh linux-x64-glibc
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh darwin-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-darwin-x64-unknown
- ./scripts/archive_target.sh darwin-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-darwin-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh win32-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-win32-x64-unknown
- ./scripts/archive_target.sh win32-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-win32-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc true plugin-linux-x64-glibc-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc-no-chromium
- ./scripts/archive_target.sh linux-x64-glibc plugin-linux-x64-glibc-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc-no-chromium
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh alpine-x64-unknown true plugin-alpine-x64-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-alpine-x64-no-chromium
- ./scripts/archive_target.sh alpine-x64-unknown plugin-alpine-x64-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-alpine-x64-no-chromium
- commands:
- ./scripts/build_push_docker.sh master
depends_on:
- yarn-test
environment:
DOCKER_PASS:
from_secret: docker_pass
DOCKER_USER:
from_secret: docker_user
IMAGE_NAME: grafana/grafana-image-renderer
image: google/cloud-sdk:449.0.0
name: publish_to_docker_master
volumes:
- name: docker
path: /var/run/docker.sock
trigger:
branch:
- master
event:
- push
type: docker
volumes:
- host:
path: /var/run/docker.sock
name: docker
---
clone:
retries: 3
depends_on: []
image_pull_secrets:
- gcr
- gar
kind: pipeline
name: release
node:
type: no-parallel
platform:
arch: amd64
os: linux
services:
- environment:
GF_FEATURE_TOGGLES_ENABLE: renderAuthJWT
GF_PATHS_PROVISIONING: /drone/src/scripts/drone/provisioning
image: grafana/grafana-enterprise:latest
name: grafana
steps:
- commands:
- mkdir -p bin
- curl -fL -o bin/grabpl https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v3.0.20/grabpl
- chmod +x bin/grabpl
image: byrnedo/alpine-curl:0.1.8
name: grabpl
- commands:
- . ~/.init-nvm.sh
- yarn install --frozen-lockfile --no-progress
depends_on:
- grabpl
environment:
PUPPETEER_CACHE_DIR: /drone/src/cache
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-install
- commands:
- . ~/.init-nvm.sh
- yarn build
depends_on:
- yarn-install
image: grafana/grafana-plugin-ci:1.9.0
name: yarn-build
- commands:
- dockerize -wait http://grafana:3000 -timeout 120s
image: jwilder/dockerize:0.6.1
name: wait-for-grafana
- commands:
- yarn test-ci
depends_on:
- wait-for-grafana
- yarn-build
environment:
CI: "true"
PUPPETEER_CACHE_DIR: /drone/src/cache
image: us-docker.pkg.dev/grafanalabs-dev/grafana-ci/docker-puppeteer:2.0.0
name: yarn-test
- commands:
- . ~/.init-nvm.sh
- echo "Starting veracode scan..."
- '# Increase heap size or the scanner will die.'
- export _JAVA_OPTIONS=-Xmx4g
- mkdir -p ci/jobs/security_scan
- curl -sSL https://download.sourceclear.com/ci.sh | sh -s scan --skip-compile --quick
--allow-dirty
depends_on:
- yarn-build
environment:
SRCCLR_API_TOKEN:
from_secret: srcclr_api_token
failure: ignore
image: grafana/grafana-plugin-ci:1.9.0
name: security-scan
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc
- ./scripts/archive_target.sh linux-x64-glibc
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh darwin-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-darwin-x64-unknown
- ./scripts/archive_target.sh darwin-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-darwin-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh win32-x64-unknown
- bin/grabpl build-plugin-manifest ./dist/plugin-win32-x64-unknown
- ./scripts/archive_target.sh win32-x64-unknown
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-win32-x64-unknown
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh linux-x64-glibc true plugin-linux-x64-glibc-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-linux-x64-glibc-no-chromium
- ./scripts/archive_target.sh linux-x64-glibc plugin-linux-x64-glibc-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-linux-x64-glibc-no-chromium
- commands:
- . ~/.init-nvm.sh
- ./scripts/package_target.sh alpine-x64-unknown true plugin-alpine-x64-no-chromium
- bin/grabpl build-plugin-manifest ./dist/plugin-alpine-x64-no-chromium
- ./scripts/archive_target.sh alpine-x64-unknown plugin-alpine-x64-no-chromium
depends_on:
- yarn-test
environment:
GRAFANA_API_KEY:
from_secret: grafana_api_key
image: grafana/grafana-plugin-ci:1.9.0
name: package-alpine-x64-no-chromium
- commands:
- ./scripts/generate_md5sum.sh
- . ./scripts/get_gh_token.sh
- ./scripts/publish_github_release.sh
depends_on:
- package-linux-x64-glibc
- package-darwin-x64-unknown
- package-win32-x64-unknown
- package-linux-x64-glibc-no-chromium
- package-alpine-x64-no-chromium
environment:
GITHUB_APP_ID:
from_secret: github_app_id
GITHUB_APP_PRIVATE_KEY:
from_secret: github_app_private_key
GITHUB_INSTALLATION_ID:
from_secret: github_app_installation_id
image: cibuilds/github:0.13.0
name: publish_to_github
- commands:
- ./scripts/build_push_docker.sh
depends_on:
- publish_to_github
environment:
DOCKER_PASS:
from_secret: docker_pass
DOCKER_USER:
from_secret: docker_user
IMAGE_NAME: grafana/grafana-image-renderer
image: google/cloud-sdk:449.0.0
name: publish_to_docker
volumes:
- name: docker
path: /var/run/docker.sock
- commands:
- . ~/.init-nvm.sh
- yarn run create-gcom-plugin-json ${DRONE_COMMIT}
- yarn run push-to-gcom
depends_on:
- publish_to_github
environment:
GCOM_PUBLISH_TOKEN:
from_secret: gcom_publish_token
GCOM_UAGENT:
from_secret: gcom_uagent
GCOM_URL:
from_secret: gcom_url
image: grafana/grafana-plugin-ci:1.9.0
name: publish_to_gcom
trigger:
branch:
- master
event:
- promote
target:
- release
type: docker
volumes:
- host:
path: /var/run/docker.sock
name: docker
---
get:
name: .dockerconfigjson
path: secret/data/common/gcr
kind: secret
name: gcr
---
get:
name: app-id
path: ci/data/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_id
---
get:
name: private-key
path: ci/data/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_private_key
---
get:
name: app-installation-id
path: ci/data/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_installation_id
---
get:
name: gcom_publish_token
path: infra/data/ci/drone-plugins
kind: secret
name: gcom_publish_token
---
get:
name: grafana_api_key
path: infra/data/ci/drone-plugins
kind: secret
name: grafana_api_key
---
get:
name: srcclr_api_token
path: infra/data/ci/drone-plugins
kind: secret
name: srcclr_api_token
---
get:
name: .dockerconfigjson
path: secret/data/common/gar
kind: secret
name: gar
---
kind: signature
hmac: 5e72ddb2d00dec40054f0640eb9048e0375790ce7300d0863138e5f98cfb7a0c
...