-
Notifications
You must be signed in to change notification settings - Fork 2
644 lines (617 loc) · 23.3 KB
/
ci.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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
name: CI
on:
release:
types: [published]
push:
branches:
- main
tags:
- test-artifacts*
pull_request:
branches:
- main
jobs:
snyk-scan:
runs-on: ubuntu-latest
container:
image: radixdlt/snyk-python:sha-e6b1b80
permissions:
id-token: write
pull-requests: read
contents: read
deployments: write
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- name: Configure AWS credentials to fetch secrets
uses: aws-actions/configure-aws-credentials@97271860067ec931c45b8d104fbf0d15954ab85c # branch v1-node16
with:
role-to-assume: ${{ secrets.AWS_ROLE_NAME_SNYK_SECRET }}
aws-region: "eu-west-2"
role-session-name: "baylon-nodecli-${{ github.run_id }}-${{ github.run_attempt }}"
- name: Fetch AWS secrets
uses: aws-actions/aws-secretsmanager-get-secrets@287592d14d9c9c48199db83dc182ae12af3df18e # v1.0.1
with:
secret-ids: |
SNYK, ${{ secrets.AWS_SECRET_NAME_SNYK }}
parse-json-secrets: true
- name: Run Snyk to check for deps vulnerabilities
run: |
cd node-runner-cli/
pipenv install --python /usr/local/bin/python
snyk auth ${{ env.SNYK_TOKEN }}
snyk test --file=Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --severity-threshold=critical
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run Snyk to check for code vulnerabilities
run: snyk code test --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --severity-threshold=high
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test SBOM generation
run: snyk sbom --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --format=cyclonedx1.4+json --json-file-output sbom.json
snyk-monitor:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
needs:
- build-jammy
- build-focal
- snyk-scan
permissions:
id-token: write
pull-requests: read
contents: read
deployments: write
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: radixdlt/public-iac-resuable-artifacts/fetch-secrets@main
with:
role_name: ${{ secrets.AWS_ROLE_NAME_SNYK_SECRET }}
app_name: 'babylon-nodecli'
step_name: 'snyk-monitor'
secret_prefix: 'SNYK'
secret_name: ${{ secrets.AWS_SECRET_NAME_SNYK }}
parse_json: true
- name: Setup python
uses: actions/setup-python@v4.5.0
with:
python-version: 3.10.6
- name: Install pipenv
run: python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
cd ./node-runner-cli
pipenv install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Snyk cli
run: |
npm install snyk -g
snyk -v
snyk auth ${{ env.SNYK_TOKEN }}
- name: Enable Snyk online monitoring - Devops
run: snyk monitor --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_DEVOPS_ORG_ID }} --target-reference=${{ github.ref_name }}
- name: Enable Snyk online monitoring - Network
run: snyk monitor --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --target-reference=${{ github.ref_name }}
upload-sbom:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
permissions: write-all
needs:
- build-jammy
- snyk-scan
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: radixdlt/public-iac-resuable-artifacts/fetch-secrets@main
with:
role_name: ${{ secrets.AWS_ROLE_NAME_SNYK_SECRET }}
app_name: 'babylon-nodecli'
step_name: 'upload-sbom'
secret_prefix: 'SNYK'
secret_name: ${{ secrets.AWS_SECRET_NAME_SNYK }}
parse_json: true
- name: Setup python
uses: actions/setup-python@v4.5.0
with:
python-version: 3.10.6
- name: Install pipenv
run: python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
cd ./node-runner-cli
pipenv install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Snyk cli
run: |
npm install snyk -g
snyk -v
snyk auth ${{ env.SNYK_TOKEN }}
- name: Generate SBOM
run: snyk sbom --file=./node-runner-cli/Pipfile --org=${{ env.SNYK_NETWORK_ORG_ID }} --format=cyclonedx1.4+json --json-file-output sbom.json
- name: Upload SBOM
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
with:
files: sbom.json
tests:
name: "Unit tests"
runs-on: ubuntu-22.04
steps:
- name: cancel running workflows
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Dump context
uses: crazy-max/ghaction-dump-context@v1
- name: Install build essentials
run: sudo apt-get -y install build-essential
- name: setup python
uses: actions/setup-python@v4.5.0
with:
python-version: 3.10.6
- name: Install pipenv
run: |
pip install pipenv==2023.7.23
cd node-runner-cli/
pipenv install
pipenv run pip install pytest pytest-cov
pipenv run pytest tests/unit --doctest-modules --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2.6.1
if: always()
with:
files: |
/home/runner/work/babylon-nodecli/babylon-nodecli/node-runner-cli/junit/test-results.xml
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json
junit/**/*.xml
junit/*.xml
node-runner-cli/junit/**/*.xml
junit/*.xml
**/junit/test-results.xml
- if: ${{ github.event_name == 'pull_request' }}
name: Get Cover
uses: orgoro/coverage@v3
with:
coverageFile: node-runner-cli/coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
e2e-tests:
name: "E2E tests"
runs-on: ubuntu-22.04
steps:
- name: cancel running workflows
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Dump context
uses: crazy-max/ghaction-dump-context@v1
- name: setup python
uses: actions/setup-python@v4.5.0
with:
python-version: 3.10.6
- name: Install pipenv
run: |
pip install pipenv==2023.7.23
cd node-runner-cli/
pipenv install
pipenv run pip install pytest
pipenv run pytest tests/e2e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-jammy:
needs:
- tests
- e2e-tests
name: "Build jammy"
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Build the binary for ubuntu jammy
run: |
cd node-runner-cli
make output-ubuntu-jammy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Upload generated cli file"
uses: actions/upload-artifact@v3.1.2
with:
name: ubuntu 22.04
path: "${{ github.workspace }}/node-runner-cli/out/ubuntu/jammy/babylonnode"
build-focal:
needs:
- tests
name: "Build focal"
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Build the binary for ubuntu focal
run: |
cd node-runner-cli
make output-ubuntu-focal
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Upload generated cli file"
uses: actions/upload-artifact@v3.1.2
with:
name: ubuntu 20.04
path: "${{ github.workspace }}/node-runner-cli/out/ubuntu/focal/babylonnode"
upload-release-jammy:
runs-on: ubuntu-22.04
if: ${{ github.event_name == 'release' }}
needs:
- build-jammy
- snyk-scan
steps:
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 22.04
- name: Rename release asset
run: |
mv ./babylonnode babylonnode-ubuntu-22.04
- if: ${{ github.event_name == 'release' }}
name: Upload radixcli ubuntu binary
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
with:
files: |
babylonnode-ubuntu-22.04
upload-release-focal:
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'release' }}
needs:
- build-focal
- snyk-scan
steps:
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 20.04
- name: Rename release asset
run: |
mv ./babylonnode babylonnode-ubuntu-20.04
- if: ${{ github.event_name == 'release' }}
name: Upload radixcli ubuntu binary
uses: softprops/action-gh-release@c9b46fe7aad9f02afd89b12450b780f52dacfb2d
with:
files: |
babylonnode-ubuntu-20.04
test-systemd:
runs-on: [node-only]
needs:
- build-jammy
- snyk-scan
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 22.04
- name: Get dependencies
run: |
chmod +x ./babylonnode
sudo apt-get update
- name: Run systemd dependencies
run: |
ls -a
chmod +x ./babylonnode
# ./babylonnode systemd dependencies
echo "expecting the dependencies to be already installed"
- name: Run systemd config
run: |
ls -a
chmod +x ./babylonnode
echo "HOME=$HOME"
echo "PATH=$PWD"
./babylonnode systemd config -m CORE \
-n 14 \
-t radix://node_tdx_e_1q0gm3fwqh8ggl09g7l8ru96krzlxdyrc694mqw8cf227v62vjyrmccv8md5@13.126.65.118 \
-i 13.126.65.118 \
-v "not_a_real_validator_address" \
-k $KEYSTORE_PASSWORD -nk -a \
-dd $HOME/babylon-ledger
./babylonnode systemd stop && sudo rm -rf $HOME/babylon-ledger
env:
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run systemd install
run: |
ls -a
chmod +x ./babylonnode
echo "HOME=$HOME"
echo "PATH=$PWD"
./babylonnode systemd install -a
- name: Get Logs and Status
run: |
sleep 15
sudo tail /var/log/syslog -n 100
./babylonnode auth set-admin-password --setupmode SYSTEMD -p $NGINX_ADMIN_PASSWORD
./babylonnode auth set-superadmin-password --setupmode SYSTEMD -p $NGINX_SUPERADMIN_PASSWORD
./babylonnode auth set-metrics-password --setupmode SYSTEMD -p $NGINX_METRICS_PASSWORD
NGINX_ADMIN_PASSWORD=$NGINX_ADMIN_PASSWORD ./babylonnode api system health
NGINX_ADMIN_PASSWORD=$NGINX_ADMIN_PASSWORD ./babylonnode api system version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_SUPERADMIN_PASSWORD: ${{secrets.NGINX_SUPERADMIN_PASSWORD}}
- name: Stop systemd
run: |
chmod +x ./babylonnode
echo "HOME=$HOME"
echo "PATH=$PWD"
./babylonnode systemd stop
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Clean Up
# run: |
# sudo rm -rf /etc/radixdlt/node
# rm -rf node-config/
# rm -rf monitoring
test-config-command:
runs-on: ubuntu-22.04
needs:
- build-jammy
- snyk-scan
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 22.04
- name: Get dependencies
run: |
chmod +x ./babylonnode
sudo apt-get update
./babylonnode docker dependencies
- name: core-gateway-all-local
run: |
ls -a
chmod +x ./babylonnode
mkdir -p $HOME/node-config
echo "HOME=$HOME"
echo "PATH=$PWD"
export PROMPT_FEEDS="node-runner-cli/test-prompts/core-gateway-all-local.yml"
./babylonnode docker config -m DETAILED \
-d $HOME/node-config \
-k $KEYSTORE_PASSWORD -nk -a
env:
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
RADIXDLT_APP_VERSION_OVERRIDE: "1.3.2"
RADIXDLT_GATEWAY_VERSION_OVERRIDE: "0.0.1-rc1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: corenode-01
run: |
ls -a
chmod +x ./babylonnode
export PROMPT_FEEDS="node-runner-cli/test-prompts/corenode-01.yml"
./babylonnode docker config -m DETAILED \
-d $HOME/node-config \
-k $KEYSTORE_PASSWORD -nk -a
env:
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
RADIXDLT_APP_VERSION_OVERRIDE: "1.3.2"
RADIXDLT_GATEWAY_VERSION_OVERRIDE: "0.0.1-rc1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: corenode-02
run: |
ls -a
export PROMPT_FEEDS="node-runner-cli/test-prompts/corenode-02.yml"
./babylonnode docker config -m DETAILED \
-d $HOME/node-config \
-k $KEYSTORE_PASSWORD -nk -a
env:
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
RADIXDLT_APP_VERSION_OVERRIDE: "1.3.2"
RADIXDLT_GATEWAY_VERSION_OVERRIDE: "0.0.1-rc1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-core-only-node:
runs-on: ubuntu-22.04
permissions:
id-token: write
pull-requests: read
contents: read
needs:
- build-jammy
- snyk-scan
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 22.04
- name: Run configure command
run: |
chmod +x ./babylonnode
sudo apt-get update
./babylonnode docker dependencies
- name: Setup config
run: |
chmod +x ./babylonnode
mkdir -p $HOME/babylon-node-config
export DISABLE_VERSION_CHECK=true
export RADIXDLT_APP_VERSION_OVERRIDE="rcnet-v3.1-r1"
export DOCKER_COMPOSE_LOCATION="/usr/local/bin/docker-compose"
export PROMPT_FEEDS="node-runner-cli/test-prompts/core-gateway-all-local.yml"
./babylonnode docker config -m DETAILED \
-d $HOME/babylon-node-config \
-k $KEYSTORE_PASSWORD -nk -a
env:
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run CLI setup
run: |
export DISABLE_VERSION_CHECK=true
export DOCKER_COMPOSE_LOCATION="/usr/local/bin/docker-compose"
./babylonnode docker install -f $HOME/babylon-node-config/config.yaml -a
# ToDo: Fix Authorization error export DOCKER_COMPOSE_FOLDER_PREFIX=runner ?
sleep 60
./babylonnode auth set-admin-password -m DOCKER -p $NGINX_ADMIN_PASSWORD
./babylonnode auth set-metrics-password -m DOCKER -p $NGINX_METRICS_PASSWORD
./babylonnode auth set-superadmin-password -m DOCKER -p $NGINX_SUPERADMIN_PASSWORD
NGINX_ADMIN_PASSWORD=$NGINX_ADMIN_PASSWORD ./babylonnode api system health
NGINX_ADMIN_PASSWORD=$NGINX_ADMIN_PASSWORD ./babylonnode api system version
env:
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_SUPERADMIN_PASSWORD: ${{secrets.NGINX_SUPERADMIN_PASSWORD}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run Monitoring setup
run: |
export DOCKER_COMPOSE_LOCATION="/usr/local/bin/docker-compose"
./babylonnode monitoring config \
-m MONITOR_CORE \
-cm $NGINX_METRICS_PASSWORD \
-gm $NGINX_METRICS_PASSWORD \
-am $NGINX_METRICS_PASSWORD
./babylonnode monitoring install -a
env:
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_SUPERADMIN_PASSWORD: ${{secrets.NGINX_SUPERADMIN_PASSWORD}}
test-full-stack:
runs-on: ubuntu-22.04
needs:
- build-jammy
steps:
- name: Download packaged cli
uses: actions/download-artifact@v3
with:
name: ubuntu 22.04
- name: Get dependencies
run: |
chmod +x ./babylonnode
sudo apt-get update
./babylonnode docker dependencies
- name: Setup config
run: |
chmod +x ./babylonnode
mkdir -p $HOME/node-config
export DISABLE_VERSION_CHECK=true
rm -rf $HOME/node-config
./babylonnode docker config -d $HOME/node-config \
-t radix://tn1qv9f8ys7ade4khjyr2s6zlhuxjqvhzz39kvjskupaj9lvhl3lwxauc67nn8@65.1.217.210 \
-m CORE GATEWAY -n 2 -k $KEYSTORE_PASSWORD -nk -p $POSTGRESS_PASSWORD -a
#grep -v "password" $HOME/node-config/config.yaml > temp && mv temp $HOME/node-config/config.yaml
cat $HOME/node-config/config.yaml
env:
POSTGRESS_PASSWORD: ${{secrets.POSTGRESS_PASSWORD}}
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
CORE_DOCKER_REPO_OVERRIDE: "radixdlt/babylon-node"
RADIXDLT_APP_VERSION_OVERRIDE: "1.3.2"
RADIXDLT_GATEWAY_VERSION_OVERRIDE: "0.0.1-rc1"
- name: Run CLI setup
run: |
export DISABLE_VERSION_CHECK=true
export COMPOSE_HTTP_TIMEOUT=360
./babylonnode docker stop -f $HOME/node-config/config.yaml
#Below PATH require when ansible is installed as part of pip
export PATH="$PATH:/home/ubuntu/.local/bin"
DOCKER_COMPOSE_FOLDER_PREFIX=ubuntu ./babylonnode auth set-admin-password -m DOCKER -p $NGINX_ADMIN_PASSWORD
DOCKER_COMPOSE_FOLDER_PREFIX=ubuntu ./babylonnode auth set-metrics-password -m DOCKER -p $NGINX_METRICS_PASSWORD
DOCKER_COMPOSE_FOLDER_PREFIX=ubuntu ./babylonnode auth set-gateway-password -m DOCKER -p $NGINX_GATEWAY_PASSWORD
./babylonnode monitoring stop
./babylonnode monitoring config \
-m MONITOR_CORE MONITOR_GATEWAY \
-cm $NGINX_METRICS_PASSWORD \
-gm $NGINX_METRICS_PASSWORD \
-am $NGINX_METRICS_PASSWORD
./babylonnode monitoring install -a
export POSTGRES_PASSWORD=${{secrets.POSTGRES_PASSWORD}}
export RADIXDLT_NODE_KEY_PASSWORD=${{secrets.KEYSTORE_PASSWORD}}
# ToDo: Fix Docker Image Pull with Gateway installation
# ./babylonnode docker install -f $HOME/node-config/config.yaml -a
# sleep 60
# NGINX_ADMIN_PASSWORD=$NGINX_ADMIN_PASSWORD ./babylonnode api system health
# curl -f --request POST --insecure --user "gateway:$NGINX_GATEWAY_PASSWORD" https://localhost/gateway
# curl --insecure --user "gateway:$NGINX_GATEWAY_PASSWORD" https://localhost/token/native --header 'Content-Type: application/json' -d '{ "network_identifier":{"network":"stokenet"}}'
# curl -k -f -u "metrics:$NGINX_METRICS_PASSWORD" https://localhost/gateway/metrics
env:
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_GATEWAY_PASSWORD: ${{secrets.NGINX_GATEWAY_PASSWORD}}
CORE_DOCKER_REPO_OVERRIDE: "radixdlt/radixdlt-core"
RADIXDLT_APP_VERSION_OVERRIDE: "1.3.2"
RADIXDLT_GATEWAY_VERSION_OVERRIDE: "0.0.1-rc1"
test-userflow-docker-core-gateway-same-host:
runs-on: babylon-nodecli-gateway
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
# - name: Download packaged cli
# uses: actions/download-artifact@v3
# with:
# name: ubuntu 22.04
- name: Get dependencies
run: |
wget -O babylonnode https://github.com/radixdlt/babylon-nodecli/releases/download/2.0.0/babylonnode-ubuntu-22.04
chmod +x ./babylonnode
sudo apt-get update
./babylonnode docker dependencies
- name: "Execute User Flow: Install Core, Gateway and Monitoring on the same host"
run: |
chmod +x ./node-runner-cli/tests/userflows/install-docker-all-same-host.sh
./node-runner-cli/tests/userflows/install-docker-all-same-host.sh
env:
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_GATEWAY_PASSWORD: ${{secrets.NGINX_GATEWAY_PASSWORD}}
POSTGRES_PASSWORD: ${{secrets.POSTGRES_PASSWORD}}
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
RADIXDLT_NGINX_VERSION_OVERRIDE: test6
experiment-userflow-docker-core-gateway-same-host:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
# - name: Download packaged cli
# uses: actions/download-artifact@v3
# with:
# name: ubuntu 22.04
- name: Get dependencies
run: |
wget -O babylonnode https://github.com/radixdlt/babylon-nodecli/releases/download/2.0.0/babylonnode-ubuntu-22.04
chmod +x ./babylonnode
sudo apt-get update
./babylonnode docker dependencies
- name: "Execute User Flow: Install Core, Gateway and Monitoring on the same host"
run: |
export DOCKER_COMPOSE_LOCATION="/usr/local/bin/docker-compose"
chmod +x ./node-runner-cli/tests/userflows/install-docker-all-same-host.sh
./node-runner-cli/tests/userflows/install-docker-all-same-host.sh
env:
NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}
NGINX_METRICS_PASSWORD: ${{secrets.NGINX_METRICS_PASSWORD}}
NGINX_GATEWAY_PASSWORD: ${{secrets.NGINX_GATEWAY_PASSWORD}}
POSTGRES_PASSWORD: ${{secrets.POSTGRES_PASSWORD}}
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}}
RADIXDLT_NGINX_VERSION_OVERRIDE: test6