-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
459 lines (416 loc) · 12.7 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
# repository secrets:
# -------------------
# - deploy_to_host
# - drone_deployer_ssh_key_private
# - drone_deployer_ssh_username
# - repository_backend = registry.domain.tld/namespace/ledger
# - repository_frontend = registry.domain.tld/namespace/ledger-frontend
# organization secrets:
# -------------------
# - nyx_flyingfishflash_token_codeberg
# - nyx_flyingfishflash_token_github
# - nyx_flyingfishflash_token_gitlab
# - nyx_flyingfishflash_token_lan
# - registry_hostname
# - registry_password
# - registry_username
# - sonar_host
# - sonar_token
kind: pipeline
type: docker
name: "frontend - build"
volumes:
- name: drone_cache
host:
path: /var/lib/docker/volumes_managed/drone_cache
trigger:
event:
- push
- tag
ref:
- refs/heads/build-*
- refs/heads/feature-*
- refs/heads/fix-*
- refs/heads/main
- refs/heads/perf-*
- refs/heads/refactor-*
- refs/heads/style-*
- refs/heads/release
environment:
VERSION: .version
BUILD: .build
steps:
- name: infer version
image: registry.flyingfishflash.net/custom/nyx:latest
commands:
# nyx requires git tags to infer the current version
- git fetch --tags -q
- rm -fv $VERSION
- echo "export NYX_CURRENT_VERSION=$(nyx infer --fatal | grep 'current version' | awk '{ print $NF }' | tr -d '\n')" > $VERSION
- cat $VERSION
- name: build
image: node:18-alpine
depends_on:
- infer version
commands:
- source $VERSION
- |
cat <<EOT >> $BUILD
export BUILD_SCM_COMMIT_SHORT_SHA=$(echo $DRONE_COMMIT_SHA | cut -c1-8)
export BUILD_CLIENT_NPM_CACHE=/drone/drone_cache/$DRONE_REPO/client/npm
export BUILD_CLIENT_DIST=/drone/drone_cache/$DRONE_REPO/client/dist
export PATH=/drone/src/frontend/node_modules/.bin:$PATH
EOT
- source $BUILD
- env | awk -v s="BUILD_" 'index($0, s) == 1' | LC_ALL=C sort
- mkdir -pv $BUILD_CLIENT_NPM_CACHE
- mkdir -pv $BUILD_CLIENT_DIST
- cd /drone/src/frontend
- |
export JSON_BUILD_PROPERTIES=$(node -pe "
JSON.stringify({
artifact: new String('ledger'),
ciPipelineId: process.env.DRONE_BUILD_NUMBER,
ciPlatform: new String('drone'),
commit: process.env.BUILD_SCM_COMMIT_SHORT_SHA,
group: Symbol(''),
name: Symbol(''),
time: Symbol(''),
version: process.env.NYX_CURRENT_VERSION
});
")
- echo $JSON_BUILD_PROPERTIES > src/assets/buildProperties.json
- cat src/assets/buildProperties.json
- npm version $NYX_CURRENT_VERSION --no-git-tag-version
- npm ci --cache $BUILD_CLIENT_NPM_CACHE --prefer-offline
- ng version
- ng build --configuration production --output-path=$BUILD_CLIENT_DIST/ledger-frontend
- printf "\n$(ls -1a $BUILD_CLIENT_DIST/ledger-frontend | wc -l) files in $BUILD_CLIENT_DIST/ledger-frontend\n"
volumes:
- name: drone_cache
path: /drone/drone_cache
---
kind: pipeline
type: docker
name: "backend - build"
trigger:
event:
- push
- tag
ref:
- refs/heads/build-*
- refs/heads/feature-*
- refs/heads/fix-*
- refs/heads/main
- refs/heads/perf-*
- refs/heads/refactor-*
- refs/heads/release
- refs/heads/style-*
volumes:
- name: drone_cache
host:
path: /var/lib/docker/volumes_managed/drone_cache
services:
- name: postgres
image: postgres:latest
environment:
POSTGRES_USER: ledger
POSTGRES_PASSWORD: ledger
POSTGRES_DB: ledger
steps:
# nyx requires git tags to infer the current version
- name: fetch git tags
image: registry.flyingfishflash.net/custom/nyx:latest
commands:
- git fetch --tags -q
- name: verify postgres
image: postgres
commands:
- |
until psql "dbname=ledger host=postgres user=ledger password=ledger port=5432" \
-c "select 1;" >/dev/null 2>&1; do sleep 1; done
- |
psql "dbname=ledger host=postgres user=ledger password=ledger port=5432" \
-c "select count(*) from pg_catalog.pg_tables;"
- name: build
image: gradle:8-jdk17
depends_on:
- fetch git tags
- verify postgres
commands:
- export GRADLE_USER_HOME=/drone/drone_cache/$DRONE_REPO/api/gradle-user-home
- echo $GRADLE_USER_HOME
- mkdir -pv $GRADLE_USER_HOME
- touch $GRADLE_USER_HOME/gradle.properties
- echo org.gradle.caching=true > $GRADLE_USER_HOME/gradle.properties
- echo org.gradle.daemon=false >> $GRADLE_USER_HOME/gradle.properties
- export GRADLE_PROJECT_BUILD_DIR=/drone/drone_cache/$DRONE_REPO/api/build
- echo $GRADLE_PROJECT_BUILD_DIR
- mkdir -pv $GRADLE_PROJECT_BUILD_DIR
- >
gradle
:backend:explodebootjar
:backend:copyBuildInfo
:backend:testClasses
:backend:spotlessCheck
:backend:test
:backend:integrationTests
:backend:bootBuildInfo
-PbuildDir=$GRADLE_PROJECT_BUILD_DIR
- >
gradle
:backend:integrationTests
-Dspring.profiles.active=postgresql
-Dspring.datasource.url=jdbc:postgresql://postgres:5432/ledger
-Dspring.datasource.username=ledger
-Dspring.datasource.password=ledger
-Dspring.datasource.platform=postgresql
-PbuildDir=$GRADLE_PROJECT_BUILD_DIR
- >
/drone/src/scripts/ci/drone/drone-is-sonar-configured.sh &&
gradle
sonar
-Dsonar.host.url=$SONAR_HOST
-Dsonar.token=$SONAR_TOKEN
-Dsonar.qualitygate.wait=true
-PbuildDir=$GRADLE_PROJECT_BUILD_DIR
environment:
SONAR_HOST:
from_secret: sonar_host
SONAR_TOKEN:
from_secret: sonar_token
volumes:
- name: drone_cache
path: /drone/drone_cache
---
kind: pipeline
name: "publish - image"
type: docker
trigger:
event:
- push
ref:
- refs/heads/feature-*
- refs/heads/fix-*
- refs/heads/perf-*
- refs/heads/refactor-*
- refs/heads/release
depends_on:
- "frontend - build"
- "backend - build"
volumes:
- name: drone_cache_client_dist
host:
path: /var/lib/docker/volumes_managed/drone_cache/flyingfishflash/ledger/client/dist
- name: drone_cache_api_build
host:
path: /var/lib/docker/volumes_managed/drone_cache/flyingfishflash/ledger/api/build
environment:
TAGS: .tags
VERSION: .version
steps:
- name: generate image tags
image: registry.flyingfishflash.net/custom/nyx:latest
commands:
# nyx requires git tags to infer the current version
- git fetch --tags -q
- nyx infer --fatal | grep 'current version' | awk '{ print $NF }' | tr -d '\n' > $TAGS
- cat $TAGS && echo
- name: publish frontend
image: plugins/docker
depends_on:
- generate image tags
privileged: true
settings:
auto_tag: false
context: /drone/src/frontend/
dockerfile: /drone/src/frontend/Dockerfile
repo:
from_secret: repository_frontend
registry:
from_secret: registry_hostname
username:
from_secret: registry_username
password:
from_secret: registry_password
volumes:
- name: drone_cache_client_dist
path: /drone/src/frontend/dist
- name: publish backend
image: plugins/docker
depends_on:
- generate image tags
privileged: true
settings:
auto_tag: false
context: /drone/src/backend/
dockerfile: /drone/src/backend/Dockerfile
repo:
from_secret: repository_backend
registry:
from_secret: registry_hostname
username:
from_secret: registry_username
password:
from_secret: registry_password
volumes:
- name: drone_cache_api_build
path: /drone/src/backend/build
---
kind: pipeline
name: "publish - release"
type: docker
trigger:
event:
- push
ref:
- refs/heads/release
depends_on:
- "publish - image"
volumes:
- name: drone_cache
host:
path: /var/lib/docker/volumes_managed/drone_cache
steps:
- name: "publish - release"
image: registry.flyingfishflash.net/custom/nyx:latest
environment:
NYX_FLYINGFISHFLASH_TOKEN_CODEBERG:
from_secret: nyx_flyingfishflash_token_codeberg
NYX_FLYINGFISHFLASH_TOKEN_GITHUB:
from_secret: nyx_flyingfishflash_token_github
# NYX_FLYINGFISHFLASH_TOKEN_GITLAB:
# from_secret: nyx_flyingfishflash_token_gitlab
NYX_FLYINGFISHFLASH_TOKEN_LAN:
from_secret: nyx_flyingfishflash_token_lan
commands:
# nyx requires git tags to infer the current version
- git fetch --tags -q
# nyx is configured to push to the codeberg remote
# the codeberg remote propagates itself to GitHub and gitlab
- git remote add codeberg https://codeberg.org/flyingfishflash/ledger.git
- mkdir /drone/src/build
- nyx publish --dry-run=false
volumes:
- name: drone_cache
path: /drone/cache
---
kind: pipeline
name: "deploy - development"
type: docker
trigger:
event:
- push
ref:
- refs/heads/feature-*
- refs/heads/fix-*
- refs/heads/perf-*
- refs/heads/refactor-*
depends_on:
- "publish - image"
environment:
VERSION: .version
steps:
- name: infer version
image: registry.flyingfishflash.net/custom/nyx:latest
commands:
# nyx requires git tags to infer the current version
- git fetch --tags -q
- rm -fv $VERSION
- echo "export NYX_CURRENT_VERSION=$(nyx infer --fatal | grep 'current version' | awk '{ print $NF }' | tr -d '\n')" > $VERSION
- cat $VERSION
- name: create inventory file
image: alpine:latest
environment:
DEPLOY_TO_HOST:
from_secret: deploy_to_host
commands:
- echo "$DEPLOY_TO_HOST" > scripts/ci/drone/deploy/inventory
- name: create variables file
image: alpine
depends_on:
- infer version
environment:
REGISTRY_URL:
from_secret: REGISTRY_HOSTNAME
commands:
- source $VERSION
- ls -la
- echo "---" > scripts/ci/drone/deploy/variables.yaml
- 'echo "tag: $NYX_CURRENT_VERSION" >> scripts/ci/drone/deploy/variables.yaml'
- 'echo "registry_url: $REGISTRY_URL/ledger" >> scripts/ci/drone/deploy/variables.yaml'
- cat scripts/ci/drone/deploy/variables.yaml
# the secret containing the ssh private key must be created via the CLI
# drone secret add --repository flyingfishflash/ledger --name secret_name --data @/home/xxx/.ssh/id_xxx
- name: execute playbook
image: plugins/ansible
depends_on:
- create inventory file
- create variables file
settings:
extra_vars: 'region=dev'
galaxy: scripts/ci/drone/deploy/requirements.yaml
inventory: scripts/ci/drone/deploy/inventory
playbook: scripts/ci/drone/deploy/deploy.yaml
private_key:
from_secret: drone_deployer_ssh_key_private
user: drone_deployer_ssh_username
---
kind: pipeline
name: "deploy - production"
type: docker
trigger:
event:
- push
- tag
ref:
- refs/tags/*
depends_on:
- "publish - image"
environment:
VERSION: .version
steps:
- name: infer version
image: registry.flyingfishflash.net/custom/nyx:latest
commands:
# nyx requires git tags to infer the current version
- git fetch --tags -q
- rm -fv $VERSION
- echo "export NYX_CURRENT_VERSION=$(nyx infer --fatal | grep 'current version' | awk '{ print $NF }' | tr -d '\n')" > $VERSION
- cat $VERSION
- name: create inventory file
image: alpine:latest
environment:
DEPLOY_TO_HOST:
from_secret: deploy_to_host
commands:
- echo "$DEPLOY_TO_HOST" > scripts/ci/drone/deploy/inventory
- name: create variables file
image: alpine
depends_on:
- infer version
environment:
REGISTRY_URL:
from_secret: REGISTRY_HOSTNAME
commands:
- source $VERSION
- ls -la
- echo "---" > scripts/ci/drone/deploy/variables.yaml
- 'echo "tag: $NYX_CURRENT_VERSION" >> scripts/ci/drone/deploy/variables.yaml'
- 'echo "registry_url: $REGISTRY_URL/ledger" >> scripts/ci/drone/deploy/variables.yaml'
- cat scripts/ci/drone/deploy/variables.yaml
# the secret containing the ssh private key must be created via the CLI
# drone secret add --repository flyingfishflash/ledger --name secret_name --data @/home/xxx/.ssh/id_xxx
- name: execute playbook
image: plugins/ansible
depends_on:
- create inventory file
- create variables file
settings:
extra_vars: 'region=prd'
galaxy: scripts/ci/drone/deploy/requirements.yaml
inventory: scripts/ci/drone/deploy/inventory
playbook: scripts/ci/drone/deploy/deploy.yaml
private_key:
from_secret: drone_deployer_ssh_key_private
user: drone_deployer_ssh_username