-
Notifications
You must be signed in to change notification settings - Fork 1
663 lines (599 loc) · 22 KB
/
ci-cd-pipeline.yaml
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
name: CI/CD Pipeline
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch: ~ # Allows manual triggering of the workflow
permissions:
contents: read
concurrency:
group: vm-ci-cd
cancel-in-progress: false
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
outputs:
vm_started: ${{ steps.vm-status.outputs.vm_started }}
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Access Azure VM
id: vm-status
uses: azure/CLI@v2
with:
azcliversion: 2.62.0
inlineScript: |
echo "Logging into Azure..."
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }}
if [ $? -eq 0 ]; then
echo "Logged in successfully"
else
echo "Failed to login"
exit 1
fi
echo "Setting Azure subscription..."
az account set --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }}
if [ $? -eq 0 ]; then
echo "Subscription set successfully"
else
echo "Failed to set subscription"
exit 1
fi
echo "Checking if VM is running..."
VM_STATUS=$(az vm get-instance-view --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} --name ${{ secrets.AZURE_VM_NAME }} --query instanceView.statuses[1].displayStatus --output tsv)
if [ "$VM_STATUS" != "VM running" ]; then
echo "Starting VM..."
az vm start --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} --name ${{ secrets.AZURE_VM_NAME }}
echo "vm_started=true" >> $GITHUB_OUTPUT
else
echo "VM is already running"
echo "vm_started=false" >> $GITHUB_OUTPUT
fi
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Checkout Code on VM
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
set -e # Exit on error
cd ~/aperi-mech
echo "Fetching git branches..."
git fetch --all
echo "Stashing any unstaged changes..."
git stash --include-untracked
echo "Checking out main branch and pulling latest changes..."
git checkout main
git pull origin main --rebase
# Configure git to use the CICD_REPO_SECRET for fetching submodules
if ! git config --global --get url."https://${{ secrets.CICD_REPO_SECRET }}@github.com/".insteadOf; then
git config --global url."https://${{ secrets.CICD_REPO_SECRET }}@github.com/".insteadOf "https://github.com/"
fi
# For authenticated access to the repository the secret will be changed periodically and the git config will have to be updated
# On the VM, do:
# git config --global --get-regexp url.*.insteadOf
# to see the current git config. And then remove the config with:
# git config --global --unset-all url.https://[email protected]/.insteadof
# Where OLD_SECRET is the old secret from the first command. Then add the new secret with:
# git config --global url."https://[email protected]/".insteadOf "
# Where the NEW_SECRET is genertated in developer settings on GitHub and added to the repository secrets.
# or, it will be automatically updated when this action runs again.
echo "Initializing and updating submodules..."
git submodule update --init --recursive --remote
echo "Checking out appropriate branch..."
if [ "${{ github.event_name }}" = "pull_request" ]; then
git fetch origin ${{ github.sha }}
git checkout ${{ github.sha }}
elif [ "${{ github.event_name }}" = "push" ] && [ "${{ github.ref }}" = "refs/heads/main" ]; then
git checkout main
else
git checkout ${{ github.ref }}
fi
git lfs pull # Pull LFS files
rm -rf build # Remove build directory, this prevents some false positives in tests
EOF
build-release:
name: Build Release
runs-on: ubuntu-latest
needs: setup
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Build Release
uses: ./.github/actions/build-action
with:
build-type: Release
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: false
build-debug:
name: Build Debug
runs-on: ubuntu-latest
needs: setup
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
with:
lfs: false
- name: Build Debug
uses: ./.github/actions/build-action
with:
build-type: Debug
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: false
build-release-gpu:
name: Build Release, GPU
runs-on: ubuntu-latest
needs: [setup, test-release]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
with:
lfs: false
- name: Build Release, GPU
uses: ./.github/actions/build-action
with:
build-type: Release
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: true
build-debug-gpu:
name: Build Debug, GPU
runs-on: ubuntu-latest
needs: [setup, build-debug, test-debug]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
with:
lfs: false
- name: Build Debug, GPU
uses: ./.github/actions/build-action
with:
build-type: Debug
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: true
test-release:
name: Test Release
runs-on: ubuntu-latest
needs: [setup, build-release]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
BUILD_TYPE: Release
GPU: false
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run unit tests
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 1
- name: Run unit tests, parallel
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 3
- name: Run material tests
uses: ./.github/actions/run-material-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
- name: Run utils modules tests
uses: ./.github/actions/run-utils-modules-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
regression-test-release:
name: Regression Test Release
runs-on: ubuntu-latest
needs: [setup, build-release, test-release, test-release-gpu]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
GPU: false
BUILD: Release
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run regression tests, serial
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: false
build: ${{ env.BUILD }}
- name: Run regression tests, parallel
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: true
build: ${{ env.BUILD }}
regression-test-debug:
name: Regression Test Debug
runs-on: ubuntu-latest
needs: [setup, build-debug, test-debug, test-debug-gpu]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
GPU: false
BUILD: Debug
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run regression tests, serial
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: false
build: ${{ env.BUILD }}
- name: Run regression tests, parallel
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: true
build: ${{ env.BUILD }}
test-debug:
name: Test Debug
runs-on: ubuntu-latest
needs: [setup, build-debug]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
BUILD_TYPE: Debug
GPU: false
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run unit tests
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 1
- name: Run unit tests, parallel
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 3
- name: Run material tests
uses: ./.github/actions/run-material-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
- name: Run utils modules tests
uses: ./.github/actions/run-utils-modules-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
test-release-gpu:
name: Test Release, GPU
runs-on: ubuntu-latest
needs: [setup, build-release-gpu]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
BUILD_TYPE: Release
GPU: true
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run unit tests
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 1
- name: Run material tests
uses: ./.github/actions/run-material-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
- name: Run utils modules tests
uses: ./.github/actions/run-utils-modules-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
regression-test-release-gpu:
name: Regression Test Release, GPU
runs-on: ubuntu-latest
needs: [setup, build-release-gpu, test-release-gpu, regression-test-release]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
GPU: true
BUILD: Release
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run regression tests, serial
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: false
build: ${{ env.BUILD }}
regression-test-debug-gpu:
name: Regression Test Debug, GPU
runs-on: ubuntu-latest
needs: [setup, build-debug-gpu, test-debug-gpu, regression-test-debug]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
GPU: true
BUILD: Debug
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run regression tests, serial
uses: ./.github/actions/run-regression-tests
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
parallel: false
build: ${{ env.BUILD }}
test-debug-gpu:
name: Test Debug, GPU
runs-on: ubuntu-latest
needs: [setup, build-debug-gpu]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
env:
BUILD_TYPE: Debug
GPU: true
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Common SSH and Azure CLI Setup
uses: ./.github/actions/common-steps
with:
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run unit tests
uses: ./.github/actions/run-unit-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
num-processes: 1
- name: Run material tests
uses: ./.github/actions/run-material-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
- name: Run utils modules tests
uses: ./.github/actions/run-utils-modules-tests
with:
build-type: ${{ env.BUILD_TYPE }}
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: ${{ env.GPU }}
code-coverage:
name: Build Debug, Code Coverage
runs-on: ubuntu-latest
needs: [setup, regression-test-debug, regression-test-debug-gpu]
concurrency:
group: build-and-test-vm-ci-cd
cancel-in-progress: false
steps:
- name: Checkout Code on Runner # Just to get required actions in .github/. The actual code checkout is done on the VM
uses: actions/checkout@v4
with:
lfs: false
- name: Build Debug, Code Coverage
uses: ./.github/actions/build-action
with:
build-type: Debug
VM_IP: ${{ secrets.VM_IP }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
VM_USERNAME: ${{ secrets.VM_USERNAME }}
gpu: false
code-coverage: true
- name: Upload coverage reports to Codecov
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
# Install Codecov on VM (not inside Docker, but could be done inside Docker)
# curl -Os https://cli.codecov.io/latest/linux/codecov
# sudo chmod +x codecov
cd ~/aperi-mech
../codecov --verbose upload-process --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} -n unittest-${{ github.run_id }} --commit-sha ${{ github.sha }} -f build/Debug_cov/coverage.info --disable-search
EOF
teardown:
runs-on: ubuntu-latest
name: Teardown
needs:
[
setup,
build-release,
test-release,
build-debug,
test-debug,
build-release-gpu,
test-release-gpu,
build-debug-gpu,
test-debug-gpu,
regression-test-release,
regression-test-release-gpu,
regression-test-debug,
regression-test-debug-gpu,
code-coverage,
]
steps:
# For debugging purposes
- name: Print VM status
if: always()
run: |
echo "VM started: ${{ needs.setup.outputs.vm_started }}"
- name: Stop Azure VM
if: always() && needs.setup.outputs.vm_started == 'true'
uses: azure/CLI@v2
with:
azcliversion: 2.62.0
inlineScript: |
echo "Logging into Azure..."
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }}
if [ $? -eq 0 ]; then
echo "Logged in successfully"
else
echo "Failed to login"
exit 1
fi
echo "Setting Azure subscription..."
az account set --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }}
if [ $? -eq 0 ]; then
echo "Subscription set successfully"
else
echo "Failed to set subscription"
exit 1
fi
echo "Deallocating VM..."
az vm deallocate --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} --name ${{ secrets.AZURE_VM_NAME }}
if [ $? -eq 0 ]; then
echo "VM deallocated successfully"
else
echo "Failed to deallocate VM"
exit 1
fi