-
Notifications
You must be signed in to change notification settings - Fork 4
349 lines (290 loc) · 10 KB
/
actions.yml
File metadata and controls
349 lines (290 loc) · 10 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
name: Pipeline
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
env:
APIENV: "LOCAL"
# With `LOCAL` set, a local sqlite db will be used
AWS_REGION: "eu-west-2"
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
###############################################################################
# Secret Scan
###############################################################################
secret-scan:
name: Gitleaks Secret Scan
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Gitleaks
if: github.actor != 'dependabot[bot]'
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
###############################################################################
# Install dependencies & build packages
###############################################################################
build:
name: Build
needs: [secret-scan]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
###############################################################################
# Security checks
###############################################################################
dependency-checks:
name: Dependency checks
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Scan dependencies
run: |
source uhd.sh
uhd security dependencies
vulnerability-checks:
name: Vulnerability checks
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Scan for vulnerabilities
run: |
source uhd.sh
uhd security vulnerabilities
###############################################################################
# Code quality checks
###############################################################################
quality-checks:
name: Linting
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Run linters
run: |
source uhd.sh
uhd quality format-check
###############################################################################
# Architectural constraints checks
###############################################################################
architecture-checks:
name: Architecture checks
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Check architectural constraints
run: |
source uhd.sh
uhd quality architecture
###############################################################################
# Unit tests
###############################################################################
unit-tests:
name: Unit tests
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Run unit tests
run: |
source uhd.sh
uhd tests unit
###############################################################################
# Integration tests
###############################################################################
integration-tests:
name: Integration tests
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Run integration tests
run: |
source uhd.sh
uhd tests integration
###############################################################################
# System tests
###############################################################################
system-tests:
name: System tests
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Run system tests
run: |
source uhd.sh
uhd tests system
###############################################################################
# Migration tests
###############################################################################
migration-tests:
name: Migration tests
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Run migration tests
run: |
source uhd.sh
uhd tests migrations
###############################################################################
# Test coverage
###############################################################################
test-coverage:
name: Test coverage
needs: [ build ]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-cache
- name: Evaluate test coverage
run: |
source uhd.sh
uhd tests coverage
###############################################################################
# Docker build check (PR validation)
###############################################################################
docker-build-check:
name: Docker Build Check
needs: [build]
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4
- name: Build main API Docker image
run: docker build -t be-main-test -f Dockerfile .
- name: Build ingestion Docker image
run: docker build -t be-ingestion-test -f Dockerfile-ingestion .
- name: Run main API container
run: docker run -d --name be-main-test-container be-main-test
- name: Health check main API container
run: |
echo "Waiting for main API container to start..."
sleep 10
if [ "$(docker inspect -f '{{.State.Running}}' be-main-test-container)" != "true" ]; then
echo "Main API container failed to start"
docker logs be-main-test-container
exit 1
fi
echo "Main API container is running successfully"
- name: Run ingestion container
run: docker run -d --name be-ingestion-test-container be-ingestion-test
- name: Health check ingestion container
run: |
echo "Waiting for ingestion container to start..."
sleep 10
if [ "$(docker inspect -f '{{.State.Running}}' be-ingestion-test-container)" != "true" ]; then
echo "Ingestion container failed to start"
docker logs be-ingestion-test-container
exit 1
fi
echo "Ingestion container is running successfully"
- name: Cleanup
if: always()
run: |
docker rm -f be-main-test-container || true
docker rm -f be-ingestion-test-container || true
###############################################################################
# Build image
###############################################################################
publish-main-image:
name: Publish main image to central ECR
needs: [
quality-checks,
unit-tests,
integration-tests,
system-tests,
migration-tests,
test-coverage,
dependency-checks,
vulnerability-checks,
architecture-checks,
docker-build-check
]
runs-on: ubuntu-22.04-arm
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Build and publish docker image
uses: ./.github/actions/publish-image
with:
ecr-repository: ukhsa-data-dashboard/back-end
role-to-assume: ${{ secrets.AWS_TOOLS_ACCOUNT_ROLE }}
image-tag: ${{ github.sha }}
publish-ingestion-image:
name: Publish ingestion image to central ECR
needs: [
quality-checks,
unit-tests,
integration-tests,
system-tests,
migration-tests,
test-coverage,
dependency-checks,
vulnerability-checks,
architecture-checks,
docker-build-check
]
runs-on: ubuntu-22.04-arm
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Build and publish docker image
uses: ./.github/actions/publish-image
with:
ecr-repository: ukhsa-data-dashboard/ingestion
role-to-assume: ${{ secrets.AWS_TOOLS_ACCOUNT_ROLE }}
dockerfile: Dockerfile-ingestion
image-tag: ${{ github.sha }}
###############################################################################
# Deploy
###############################################################################
trigger-deployments:
name: Trigger deployments
needs: [
publish-main-image,
publish-ingestion-image
]
runs-on: ubuntu-22.04-arm
if: ${{ github.ref == 'refs/heads/main' }}
# Only deploy if the changes are being pushed to the `main` branch
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Generate ephemeral deployment token
id: generate-deployment-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.DEPLOYMENT_TOKEN_FACTORY_APP_ID }}
private-key: ${{ secrets.DEPLOYMENT_TOKEN_FACTORY_PRIVATE_KEY }}
skip-token-revoke: false
# Although this is the default, this is explicitly set so that
# we know the token gets revoked after the job has finished
repositories: "data-dashboard-infra"
- uses: ./.github/actions/trigger-deployments
with:
token: ${{ steps.generate-deployment-token.outputs.token }}