-
Notifications
You must be signed in to change notification settings - Fork 39
567 lines (479 loc) · 21.6 KB
/
Copy pathbuild.yml
File metadata and controls
567 lines (479 loc) · 21.6 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
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
name: CI on PRs
run-name: ${{ github.actor }} is perfoming a Pull Request
on:
pull_request:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
version-config:
runs-on: ubuntu-latest
outputs:
daml_release_version: ${{ steps.version.outputs.daml_release_version }}
devnet_canton_version: ${{ steps.version.outputs.devnet_canton_version }}
mainnet_canton_version: ${{ steps.version.outputs.mainnet_canton_version }}
devnet_splice_version: ${{ steps.version.outputs.devnet_splice_version }}
mainnet_splice_version: ${{ steps.version.outputs.mainnet_splice_version }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Resolve version config outputs
id: version
shell: bash
run: |
CONFIG=$(cat scripts/src/lib/version-config.json)
echo "daml_release_version=$(echo "$CONFIG" | jq -r '.DAML_RELEASE_VERSION' | tr -d '\r\n')" >> "$GITHUB_OUTPUT"
echo "devnet_canton_version=$(echo "$CONFIG" | jq -r '.SUPPORTED_VERSIONS.devnet.canton.version')" >> "$GITHUB_OUTPUT"
echo "mainnet_canton_version=$(echo "$CONFIG" | jq -r '.SUPPORTED_VERSIONS.mainnet.canton.version')" >> "$GITHUB_OUTPUT"
echo "devnet_splice_version=$(echo "$CONFIG" | jq -r '.SUPPORTED_VERSIONS.devnet.splice.version')" >> "$GITHUB_OUTPUT"
echo "mainnet_splice_version=$(echo "$CONFIG" | jq -r '.SUPPORTED_VERSIONS.mainnet.splice.version')" >> "$GITHUB_OUTPUT"
build:
runs-on: ubuntu-latest
needs: version-config
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/initial
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
save_cache: 'true'
- name: Build project
run: yarn build:all
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: build-dist-${{ github.run_id }}
path: |
.yarn/cache/
.yarn/unplugged/
.yarn/install-state.gz
.pnp.cjs
.pnp.loader.mjs
core/**/dist/
sdk/**/dist/
wallet-gateway/**/dist/
damljs
.nx/cache
.nx/workspace-data
if-no-files-found: error
retention-days: 1
hydrate-canton-caches:
name: hydrate-canton-caches (${{ matrix.network }}, ${{ matrix.instance }})
runs-on: ubuntu-latest
needs: [version-config, build]
strategy:
fail-fast: false
matrix:
network: [devnet, mainnet]
instance: [canton, localnet]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_canton/initial
if: matrix.instance == 'canton'
with:
network: ${{ matrix.network }}
canton_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_canton_version || needs.version-config.outputs.mainnet_canton_version }}
- uses: ./.github/actions/setup_localnet/initial
if: matrix.instance == 'localnet'
with:
network: ${{ matrix.network }}
splice_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_splice_version || needs.version-config.outputs.mainnet_splice_version }}
clear-blockdaemon-policies:
runs-on: ubuntu-latest
steps:
- name: Clear Blockdaemon policies
run: |
BLOCKDAEMON_API_URL="${{ vars.BLOCKDAEMON_API_URL }}"
BLOCKDAEMON_POLICY_BASE_URL="${BLOCKDAEMON_API_URL%/api/cwp/canton}"
# this clear policies, with each deployment blockdaemon renables them
curl -s -X PUT "$BLOCKDAEMON_POLICY_BASE_URL/api/v2/policies/12" \
-H "authorization: Bearer ${{ vars.BLOCKDAEMON_API_KEY }}" \
-H "content-type: application/json" \
-H "x-api-version: 2.0" \
-d '{"entries":[],"skipConfirmations":true}'
# this clear policies, with each deployment blockdaemon renables them
curl -s -X PUT "$BLOCKDAEMON_POLICY_BASE_URL/api/v2/policies/29" \
-H "authorization: Bearer ${{ vars.BLOCKDAEMON_API_KEY }}" \
-H "content-type: application/json" \
-H "x-api-version: 2.0" \
-d '{"entries":[],"skipConfirmations":true}'
build-docs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
id: setup-python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 2.1.3
# load cached venv if cache exists
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache/restore@v5
with:
path: docs/wallet-integration-guide/.venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('docs/wallet-integration-guide/poetry.lock') }}
# install dependencies if cache does not exist
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
working-directory: docs/wallet-integration-guide
run: poetry install --no-interaction --no-root
- name: Save venv cache
uses: ./.github/actions/save_cache_if_absent
with:
path: docs/wallet-integration-guide/.venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('docs/wallet-integration-guide/poetry.lock') }}
- name: Build docs
working-directory: docs/wallet-integration-guide
run: poetry run sphinx-build -c . src build --fail-on-warning
test-static:
runs-on: ubuntu-latest
needs: [version-config, build]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- name: Validate current PR title with commitlint
run: echo "$TITLE" | yarn commitlint --verbose
env:
TITLE: ${{ github.event.pull_request.title }}
- name: check package.json names
run: yarn script:cleancoding
- name: run typechecking
run: yarn nx run-many -t typecheck --parallel
- name: check open-rpc specs titles
run: yarn script:openrpc:titles
- name: prettier code
run: yarn run prettier . --check
- name: eslint code
run: yarn nx run-many -t lint --parallel
- name: check wg schema docs
run: yarn docs:update-wg-config
test-unit:
runs-on: ubuntu-latest
needs: [version-config, build]
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_playwright
- name: Run affected unit tests
run: |
yarn nx affected -t test:coverage \
--base=origin/${{ github.base_ref }} \
--head=HEAD \
--parallel
check-migration-lock:
# Verifies migrations.lock.json is in sync with src/migrations for any
# affected SQL store package that defines a `migrations:check-lock`
# script. Catches accidental migration edits
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/setup_yarn/artifacts
- name: Check migration lock files
run: |
yarn nx affected -t migrations:check-lock \
--base=origin/${{ github.base_ref }} \
--head=HEAD \
--parallel
test-migrations:
# Runs SQL migration tests for any affected package that defines a
# `test:migrations` script
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/setup_yarn/artifacts
- name: Run affected migration tests
run: |
yarn nx affected -t test:migrations \
--base=origin/${{ github.base_ref }} \
--head=HEAD \
--parallel=1
ping-e2e:
name: ping-e2e (${{ matrix.network }}, ${{ matrix.db }})
runs-on: ubuntu-latest
needs: [version-config, hydrate-canton-caches]
strategy:
fail-fast: false
matrix:
network: [devnet, mainnet]
db: [sqlite, postgres]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_canton/artifacts
with:
network: ${{ matrix.network }}
canton_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_canton_version || needs.version-config.outputs.mainnet_canton_version }}
- name: Start Postgres container
if: matrix.db == 'postgres'
run: |
docker run -d --name wk-postgres \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=postgres \
-p 5432:5432 \
--health-cmd="pg_isready -U postgres" \
--health-interval=2s \
postgres:16-alpine
until [ "$(docker inspect -f '{{.State.Health.Status}}' wk-postgres)" = "healthy" ]; do
sleep 5
done
docker inspect -f '{{.State.Health.Status}}' wk-postgres | grep -q healthy
- name: Point gateway config at Postgres
if: matrix.db == 'postgres'
run: |
CONFIG=wallet-gateway/test/config.json
jq '.store.connection = {
type: "postgres",
host: "localhost",
port: 5432,
user: "postgres",
password: "postgres",
database: "wallet"
}
| .signingStore.connection = {
type: "postgres",
host: "localhost",
port: 5432,
user: "postgres",
password: "postgres",
database: "signing"
}' "$CONFIG" > "$CONFIG.tmp"
mv "$CONFIG.tmp" "$CONFIG"
- name: Start remote WK
run: |
BLOCKDAEMON_API_URL="${{ vars.BLOCKDAEMON_API_URL }}" \
BLOCKDAEMON_API_KEY="${{ vars.BLOCKDAEMON_API_KEY }}" \
BLOCKDAEMON_API_EMAIL="${{ vars.BLOCKDAEMON_API_EMAIL }}" \
yarn pm2 start ecosystem.ci.config.js --env development
- uses: ./.github/actions/setup_playwright
- name: Run example e2e
env:
CI_SECRET_DEPENDENCY: ${{ github.event.pull_request.head.repo.fork == false }}
run: yarn nx playwright:e2e @canton-network/example-ping
- name: Collect remote PM2 logs
if: ${{ !cancelled() }}
run: yarn pm2 logs remote --raw --nostream --lines 10000 > "wallet-gateway-remote.log" 2>&1 || true
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: example-ping-playwright-report-${{ matrix.network }}-${{ matrix.db }}
path: examples/ping/playwright-report/
retention-days: 5
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: ping-wallet-gateway-remote-log-${{ matrix.network }}-${{ matrix.db }}
path: wallet-gateway-remote.log
retention-days: 5
- name: Stop Postgres container
if: ${{ always() && matrix.db == 'postgres' }}
run: docker rm -f wk-postgres || true
test-ping-e2e:
runs-on: ubuntu-latest
needs: ping-e2e
if: always()
steps:
- name: Report ping e2e execution
run: |
if [ "${{ needs.ping-e2e.result }}" != "success" ]; then
echo "ping-e2e did not succeed"
exit 1
fi
echo "test-ping-e2e passed"
portfolio-e2e:
name: portfolio-e2e (${{ matrix.network }})
runs-on: ubuntu-latest
needs: [version-config, hydrate-canton-caches]
strategy:
fail-fast: false
matrix:
network: [devnet, mainnet]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_localnet/artifacts
with:
network: ${{ matrix.network }}
splice_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_splice_version || needs.version-config.outputs.mainnet_splice_version }}
- name: Start remote WK
run: yarn pm2 start ecosystem.ci.config.js --env development
- uses: ./.github/actions/setup_playwright
- name: Run example e2e
run: yarn nx playwright:e2e @canton-network/example-portfolio
- name: Collect remote PM2 logs
if: ${{ !cancelled() }}
run: yarn pm2 logs remote --raw --nostream --lines 10000 > "wallet-gateway-remote.log" 2>&1 || true
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: example-portfolio-playwright-report-${{ matrix.network }}
path: examples/portfolio/playwright-report/
retention-days: 5
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: portfolio-wallet-gateway-remote-log-${{ matrix.network }}
path: wallet-gateway-remote.log
retention-days: 5
test-portfolio-e2e:
runs-on: ubuntu-latest
needs: portfolio-e2e
if: always()
steps:
- name: Report portfolio e2e execution
run: |
if [ "${{ needs.portfolio-e2e.result }}" != "success" ]; then
echo "portfolio-e2e did not succeed"
exit 1
fi
echo "portfolio-e2e passed"
wallet-sdk-snippets-e2e:
name: wallet-sdk-snippets-e2e (${{ matrix.network }})
runs-on: ubuntu-latest
needs: [version-config, hydrate-canton-caches]
strategy:
fail-fast: false
matrix:
network: [devnet, mainnet]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_localnet/artifacts
with:
network: ${{ matrix.network }}
splice_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_splice_version || needs.version-config.outputs.mainnet_splice_version }}
- uses: ./.github/actions/check_resources
- name: Test example snippets (${{ matrix.network }})
run: yarn nx snippets docs-wallet-integration-guide-examples
- uses: ./.github/actions/check_resources
- name: Stop Localnet (${{ matrix.network }})
if: always()
run: yarn stop:localnet -- --network=${{ matrix.network }}
- name: Save container logs
if: failure()
run: |
#!/usr/bin/env bash
set -euo pipefail
mkdir -p logs
for c in $(docker ps -a --format '{{.Names}}'); do
docker logs "$c" &> "logs/$c.log" || true
done
- name: Upload logs as artifacts
if: failure()
uses: actions/upload-artifact@v7
with:
name: docker-logs-snippets-${{ matrix.network }}
path: logs/
wallet-sdk-scripts-e2e:
name: wallet-sdk-scripts-e2e (${{ matrix.network }})
runs-on: ubuntu-latest
needs: [version-config, hydrate-canton-caches]
strategy:
fail-fast: false
matrix:
network: [devnet, mainnet]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- uses: ./.github/actions/setup_localnet/artifacts
with:
network: ${{ matrix.network }}
splice_version: ${{ matrix.network == 'devnet' && needs.version-config.outputs.devnet_splice_version || needs.version-config.outputs.mainnet_splice_version }}
- uses: ./.github/actions/check_resources
- name: Test example scripts (${{ matrix.network }})
env:
MAX_IO_LISTENERS: '50'
run: yarn script:test:examples
- uses: ./.github/actions/check_resources
- name: Stop Localnet (${{ matrix.network }})
if: always()
run: yarn stop:localnet -- --network=${{ matrix.network }}
- name: Save container logs
if: failure()
run: |
#!/usr/bin/env bash
set -euo pipefail
mkdir -p logs
for c in $(docker ps -a --format '{{.Names}}'); do
docker logs "$c" &> "logs/$c.log" || true
done
- name: Upload logs as artifacts
if: failure()
uses: actions/upload-artifact@v7
with:
name: docker-logs-scripts-${{ matrix.network }}
path: logs/
test-wallet-sdk-e2e:
name: test-wallet-sdk-e2e
runs-on: ubuntu-latest
needs: [wallet-sdk-snippets-e2e, wallet-sdk-scripts-e2e, wallet-sdk-pkg]
if: always()
steps:
- name: Report wallet-sdk e2e execution
run: |
if [ "${{ needs.wallet-sdk-snippets-e2e.result }}" != "success" ]; then
echo "wallet-sdk snippets e2e did not succeed"
exit 1
fi
if [ "${{ needs.wallet-sdk-scripts-e2e.result }}" != "success" ]; then
echo "wallet-sdk scripts e2e did not succeed"
exit 1
fi
if [ "${{ needs.wallet-sdk-pkg.result }}" != "success" ]; then
echo "wallet-sdk package validation did not succeed"
exit 1
fi
echo "all wallet-sdk-e2e jobs passed"
wallet-sdk-pkg:
runs-on: ubuntu-latest
needs: [version-config, build]
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: ./.github/actions/setup_yarn/artifacts
with:
daml_release_version: ${{ needs.version-config.outputs.daml_release_version }}
- name: Validate SDK package install
run: yarn script:validate:package