-
Notifications
You must be signed in to change notification settings - Fork 0
341 lines (271 loc) · 11.2 KB
/
test-and-release.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
name: Test and Release
on:
push:
workflow_dispatch:
permissions:
id-token: write
contents: write
issues: write
actions: write
packages: write
env:
CI: 1
FORCE_COLOR: 3
JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION: 1
COAP_SIMULATOR_DOWNLOAD_URL: ${{ secrets.COAP_SIMULATOR_DOWNLOAD_URL }}
REGISTRY: ghcr.io
jobs:
unit-tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm ci --no-audit
- name: Compile TypeScript
run: npx tsc
- name: Check source code with eslint
run: npx eslint .
- name: Check if source code is properly formatted
run: npx prettier -c ./
- name: Run Unit Tests
run: npm test
http-api-mock:
needs: [unit-tests]
runs-on: ubuntu-24.04
timeout-minutes: 5
outputs:
stackName: ${{ steps.create.outputs.stackName }}
responsesTableName: ${{ steps.create.outputs.responsesTableName }}
apiURL: ${{ steps.create.outputs.apiURL }}
requestsTableName: ${{ steps.create.outputs.requestsTableName }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm ci --no-audit
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
# The role is set up via https://github.com/hello-nrfcloud/ci
# secrets.AWS_ACCOUNT_ID_CI is an organization secret
role-to-assume: |
arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID_CI }}:role/${{ github.repository_owner }}-ci-${{ github.event.repository.name }}
# vars.AWS_REGION_CI is an organization variable
aws-region: ${{ vars.AWS_REGION_CI }}
- name: Create HTTP API mock
id: create
run: |
npx @bifravst/http-api-mock > http-api-mock.json
echo "stackName=`jq -r '.stackName' http-api-mock.json`" >> $GITHUB_OUTPUT
echo "responsesTableName=`jq -r '.responsesTableName' http-api-mock.json`" >> $GITHUB_OUTPUT
echo "apiURL=`jq -r '.apiURL' http-api-mock.json`" >> $GITHUB_OUTPUT
echo "requestsTableName=`jq -r '.requestsTableName' http-api-mock.json`" >> $GITHUB_OUTPUT
stack-name:
needs: [unit-tests]
runs-on: ubuntu-24.04
outputs:
stackName: ${{ steps.stackName.outputs.stackName }}
steps:
- name: Generate Stack ID
id: stackName
run: |
RANDOM_STRING=`node -e "const crypto = require('crypto'); process.stdout.write(crypto.randomBytes(Math.ceil(8 * 0.5)).toString('hex').slice(0, 8));"`
echo "stackName=hni-${RANDOM_STRING}" >> $GITHUB_OUTPUT
# Containers are rebuilt for every run, this ensures that they can actually
# be built. If we were to use a pre-built version here we could run into
# the risk that they are no longer buildable.
mqtt-bridge-container:
needs: [stack-name, unit-tests]
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
STACK_NAME: ${{ needs.stack-name.outputs.stackName }}
outputs:
tag: ${{ steps.build.outputs.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm ci --no-audit
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
# The role is set up via https://github.com/hello-nrfcloud/ci
# secrets.AWS_ACCOUNT_ID_CI is an organization secret
role-to-assume: |
arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID_CI }}:role/${{ github.repository_owner }}-ci-${{ github.event.repository.name }}
# vars.AWS_REGION_CI is an organization variable
aws-region: ${{ vars.AWS_REGION_CI }}
- name: Build MQTT bridge container
id: build
run: |
TAG=$(./cli.sh build-container --pull mqtt-bridge)
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Publish Docker image to repository registry
run: |
docker login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ${{ env.REGISTRY }}
docker tag mqtt-bridge:${{ steps.build.outputs.tag }} ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ steps.build.outputs.tag }}
docker push ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ steps.build.outputs.tag }}
e2e-tests:
needs:
- http-api-mock
- unit-tests
- stack-name
- mqtt-bridge-container
runs-on: ubuntu-24.04
timeout-minutes: 30
outputs:
ref: ${{ steps.ref.outputs.ref }}
env:
STACK_NAME: ${{ needs.stack-name.outputs.stackName }}
MQTT_BRIDGE_CONTAINER_TAG: ${{ needs.mqtt-bridge-container.outputs.tag }}
HTTP_API_MOCK_RESPONSES_TABLE_NAME:
${{ needs.http-api-mock.outputs.responsesTableName }}
HTTP_API_MOCK_REQUESTS_TABLE_NAME:
${{ needs.http-api-mock.outputs.requestsTableName }}
HTTP_API_MOCK_API_URL: ${{ needs.http-api-mock.outputs.apiURL }}
steps:
- uses: actions/checkout@v4
- name: store checkout out version
id: ref
run: echo "ref=${{ github.sha }}" >> $GITHUB_OUTPUT
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- uses: actions/setup-go@v5
with:
go-version: "^1.21.6"
- name: Install dependencies
run: npm ci --no-audit
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
# The role is set up via https://github.com/hello-nrfcloud/ci
# secrets.AWS_ACCOUNT_ID_CI is an organization secret
role-to-assume: |
arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID_CI }}:role/${{ github.repository_owner }}-ci-${{ github.event.repository.name }}
# vars.AWS_REGION_CI is an organization variable
aws-region: ${{ vars.AWS_REGION_CI }}
# During e2e test the MQTT bridge will connect to the AWS IoT broker
- name: Fake nRF Cloud account device
run: |
./cli.sh fake-nrfcloud-account-device nordic
./cli.sh create-fake-nrfcloud-health-check-device nordic
./cli.sh fake-nrfcloud-account-device elite
./cli.sh create-fake-nrfcloud-health-check-device elite
- name: Use HTTP API mock
run: |
./cli.sh configure-nrfcloud-account nordic apiEndpoint ${{ env.HTTP_API_MOCK_API_URL }}api.nrfcloud.com/
./cli.sh configure-nrfcloud-account nordic apiKey apiKey_Nordic
./cli.sh configure-nrfcloud-account elite apiEndpoint ${{ env.HTTP_API_MOCK_API_URL }}api.nrfcloud.com/
./cli.sh configure-nrfcloud-account elite apiKey apiKey_Elite
./cli.sh configure-feedback webhookURL ${{ env.HTTP_API_MOCK_API_URL }}webhook.office.com/
./cli.sh configure-memfault apiEndpoint ${{ env.HTTP_API_MOCK_API_URL }}api.memfault.com/
./cli.sh configure-memfault organizationAuthToken oat_18By8mEdkEj666666666666kIt9HwsMZ
./cli.sh configure-memfault organizationSlug nordic-semiconductor-asa123456
./cli.sh configure-memfault projectSlug hello-nrfcloud-com
./cli.sh configure-map apiEndpoint ${{ env.HTTP_API_MOCK_API_URL }}api.nordicsemi.world/
- name: Deploy solution stack
env:
IS_TEST: 1
run: npx cdk deploy --all --require-approval never
- name: Run End-to-End Tests
run: npm run test:e2e
- name: Print failed End-to-End tests
if: failure()
run:
cat e2e-test-result.json | npx tsx --no-warnings
./feature-runner/console-reporter.ts --only-failed --with-timestamps
- uses: actions/upload-artifact@v4
if: failure()
with:
name: e2e-test-result-${{ github.sha }}
path: e2e-test-result.json
- name: Get error logs
if: failure()
run: ./cli.sh logs -f ERROR
- name: Get all logs
if: failure()
run: |
npx tsx ./aws/export-logs.ts ${{ env.STACK_NAME }}
npx tsx ./aws/export-logs.ts ${{ needs.http-api-mock.outputs.stackName }}
- uses: actions/upload-artifact@v4
if: failure()
with:
name: logs-${{ github.sha }}
path: logs
- name: Trigger cleanup workflow
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run cleanup.yaml --ref ${{ github.ref_name }} \
-F stackName=${{ env.STACK_NAME }} \
-F mqtt_bridge_tag=${{ needs.mqtt-bridge-container.outputs.tag }} \
-F http_api_mock_stack_name=${{ needs.http-api-mock.outputs.stackName }}
release:
needs:
- e2e-tests
- mqtt-bridge-container
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/saga'
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.e2e-tests.outputs.ref }}
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm ci --no-audit
- name: Semantic release
id: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
- name: Determine released version
id: version
run: |
VERSION=`git describe --abbrev=0 --tags --always | tr -d '\n'`
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Log in to the Container registry
if: github.ref == 'refs/heads/saga'
uses: docker/login-action@1f36f5b7a2d2f7bfd524795fc966e6d88c37baa9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: docker image ls
# The Docker images that were used successfully in this test run are shared
# on the projects' container registry. The deploy workflow will pull them and
# use copy them to the product instance's container registry.
# This ensures that exactly the container that was verified to work is used
# in production.
- name: Tag docker images with release version
if: github.ref == 'refs/heads/saga'
run: |
docker pull ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ needs.mqtt-bridge-container.outputs.tag }}
docker tag ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ needs.mqtt-bridge-container.outputs.tag }} ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ steps.version.outputs.version }}
docker push ${{ env.REGISTRY }}/${{ github.repository }}/mqtt-bridge:${{ steps.version.outputs.version }}
- name: Trigger deployment workflow
if: steps.semantic-release.outcome == 'success'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run deploy.yaml \
-F ref=${{ needs.e2e-tests.outputs.ref }} \
-F mqtt_bridge_tag=${{ needs.mqtt-bridge-container.outputs.tag }}