-
Notifications
You must be signed in to change notification settings - Fork 1
380 lines (342 loc) · 12.9 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
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
- 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'
cd ~/aperi-mech
echo "Fetching git branches..."
git fetch origin +refs/pull/*:refs/remotes/origin/pr/*
echo "Checking out appropriate branch..."
if [ "${{ github.event_name }}" = "pull_request" ]; then
git checkout ${{ github.sha }}
elif [ "${{ github.event_name }}" = "push" ] && [ "${{ github.ref }}" = "refs/heads/main" ]; then
git checkout main
git pull origin 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
- 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
- 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, build-release, 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
- 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
- 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
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
- 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
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
cd ~/aperi-mech/build/Release
./unit_tests
' || { echo "Unit tests step failed"; exit 1; }
EOF
- name: Run material tests
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
cd ~/aperi-mech/build/Release
make run_material_tests
' || { echo "Material tests step failed"; exit 1; }
EOF
- name: Run utils modules tests
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
# Activate Spack environment
. ~/spack/share/spack/setup-env.sh
spack env activate aperi-mech
# Add aperi-mech build directory to PATH
export PATH=$PATH:~/aperi-mech/build/Release
# Run utils modules tests
cd ~/aperi-mech/build/Release
make run_utils_modules_tests
' || { echo "Utils modules tests step failed"; exit 1; }
EOF
- name: Run unit tests in parallel
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
cd ~/aperi-mech/build/Release
. ~/spack/share/spack/setup-env.sh
spack env activate aperi-mech
mpirun -np 3 ./unit_tests
' || { echo "Unit tests in parallel step failed"; exit 1; }
EOF
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
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
- 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, Debug
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
cd ~/aperi-mech/build/Debug
make run_all_unit_tests
' || { echo "Unit tests step failed"; exit 1; }
EOF
- name: Run unit tests in parallel, Debug
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose.yml run --rm aperi-mech-development /bin/bash -c '
cd ~/aperi-mech/build/Debug
. ~/spack/share/spack/setup-env.sh
spack env activate aperi-mech
mpirun -np 3 ./unit_tests
' || { echo "Unit tests in parallel step failed"; exit 1; }
EOF
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
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
- 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, GPU
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose_nvidia_t4_gpu.yml run --rm aperi-mech-gpu-development /bin/bash -c '
cd ~/aperi-mech/build/Release_gpu
make run_all_unit_tests
' || { echo "Unit tests step failed"; exit 1; }
EOF
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
steps:
- name: Checkout code # Just to get required actions in .github/
uses: actions/checkout@v4
- 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, Debug, GPU
run: |
ssh -T -o ConnectTimeout=10 ${{ secrets.VM_USERNAME }}@${{ secrets.VM_IP }} << 'EOF'
cd ~/aperi-mech
docker-compose -f docker-compose_nvidia_t4_gpu.yml run --rm aperi-mech-gpu-development /bin/bash -c '
cd ~/aperi-mech/build/Debug_gpu
make run_all_unit_tests
' || { echo "Unit tests step failed"; exit 1; }
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,
]
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