-
Notifications
You must be signed in to change notification settings - Fork 0
398 lines (330 loc) · 12.2 KB
/
test_all.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
name: Test apps on given SDK ref
on:
schedule:
- cron: '32 5 * * 1'
pull_request:
workflow_dispatch:
inputs:
sdk_ref_nanosp:
type: string
required: false
default: 'API_LEVEL_21'
run_nanosp:
type: boolean
required: false
default: true
sdk_ref_nanox:
type: string
required: false
default: 'API_LEVEL_21'
run_nanox:
type: boolean
required: false
default: true
sdk_ref_stax:
type: string
required: false
default: 'API_LEVEL_21'
run_stax:
type: boolean
required: false
default: true
send_to_slack:
type: boolean
required: false
default: false
golden_run:
type: boolean
required: false
default: false
jobs:
split-input-file:
name: Split input file
runs-on: ubuntu-latest
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Split input into 10 files
run: |
python3 scripts/entrypoint.py split_input --input_file input_files/input.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_1.json
path: input_1.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_2.json
path: input_2.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_3.json
path: input_3.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_4.json
path: input_4.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_5.json
path: input_5.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_6.json
path: input_6.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_7.json
path: input_7.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_8.json
path: input_8.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_9.json
path: input_9.json
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: input_10.json
path: input_10.json
test-all:
name: Test for all targets
runs-on: ubuntu-latest
needs: split-input-file
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
strategy:
matrix:
index: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
env:
API_LEVEL_NANOSP: 'API_LEVEL_21'
API_LEVEL_NANOX: 'API_LEVEL_21'
API_LEVEL_STAX: 'API_LEVEL_21'
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Download split input file
uses: actions/download-artifact@v3
with:
name: input_${{ matrix.index }}.json
- name: Setup repos
run: |
python3 scripts/entrypoint.py build_and_test --input_file input_${{ matrix.index }}.json
- name: Install tests dependencies
run: |
apk add gmp-dev g++ openssl-dev
pip install -U pip setuptools
- name: Setup inputs
run: |
echo "test_nanosp=${{inputs.run_nanosp}}" >> $GITHUB_ENV
echo "test_nanox=${{inputs.run_nanox}}" >> $GITHUB_ENV
echo "test_stax=${{inputs.run_stax}}" >> $GITHUB_ENV
echo "api_level_nanosp=${{inputs.sdk_ref_nanosp}}" >> $GITHUB_ENV
echo "api_level_nanox=${{inputs.sdk_ref_nanox}}" >> $GITHUB_ENV
echo "api_level_stax=${{inputs.sdk_ref_stax}}" >> $GITHUB_ENV
- name: Override for schedule event and PR
if: ${{ github.event_name == 'schedule' || github.event_name == 'pull_request' }}
run: |
echo "test_nanosp=true" >> $GITHUB_ENV
echo "test_nanox=true" >> $GITHUB_ENV
echo "test_stax=true" >> $GITHUB_ENV
echo "api_level_nanosp=${{env.API_LEVEL_NANOSP}}" >> $GITHUB_ENV
echo "api_level_nanox=${{env.API_LEVEL_NANOX}}" >> $GITHUB_ENV
echo "api_level_stax=${{env.API_LEVEL_STAX}}" >> $GITHUB_ENV
- name: Launch test nanosp
if: ${{ env.test_nanosp }}
run: |
if [ "${{ inputs.golden_run }}" == true ]; then
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_nanosp }} --input_file input_${{ matrix.index }}.json --test --nanosp --skip_setup --output_file test_nanosp_${{ matrix.index }}.json --logs_file log_nanosp.txt --golden_run --github_username ${{ secrets.CI_BOT_USERNAME }} --github_access_token ${{ secrets.CI_BOT_TOKEN }}
else
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_nanosp }} --input_file input_${{ matrix.index }}.json --test --nanosp --skip_setup --output_file test_nanosp_${{ matrix.index }}.json --logs_file log_nanosp.txt
fi
- name: Launch test nanox
if: ${{ env.test_nanox }}
run: |
if [ "${{ inputs.golden_run }}" == true ]; then
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_nanox }} --input_file input_${{ matrix.index }}.json --test --nanox --skip_setup --output_file test_nanox_${{ matrix.index }}.json --logs_file log_nanox.txt --golden_run --github_username ${{ secrets.CI_BOT_USERNAME }} --github_access_token ${{ secrets.CI_BOT_TOKEN }}
else
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_nanox }} --input_file input_${{ matrix.index }}.json --test --nanox --skip_setup --output_file test_nanox_${{ matrix.index }}.json --logs_file log_nanox.txt
fi
- name: Launch test stax
if: ${{ env.test_stax }}
run: |
if [ "${{ inputs.golden_run }}" == true ]; then
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_stax }} --input_file input_${{ matrix.index }}.json --test --stax --skip_setup --output_file test_stax_${{ matrix.index }}.json --logs_file log_stax.txt --golden_run --github_username ${{ secrets.CI_BOT_USERNAME }} --github_access_token ${{ secrets.CI_BOT_TOKEN }}
else
python scripts/entrypoint.py build_and_test --sdk_ref ${{ env.api_level_stax }} --input_file input_${{ matrix.index }}.json --test --stax --skip_setup --output_file test_stax_${{ matrix.index }}.json --logs_file log_stax.txt
fi
- name: Merge output files
run: |
python scripts/entrypoint.py merge_output --input_pattern "test_*.json" --output_file test_output_${{ matrix.index }}.json --key "test"
- name: Archive output file
uses: actions/upload-artifact@v3
with:
name: test_output_${{ matrix.index }}.json
path: test_output_${{ matrix.index }}.json
- name: Merge log file
continue-on-error: true
run: |
cat log_* > log_${{ matrix.index }}.txt
- name: Archive log file
uses: actions/upload-artifact@v3
continue-on-error: true
with:
name: log_${{ matrix.index }}.txt
path: log_${{ matrix.index }}.txt
build-error_log:
name: Build error logs
runs-on: ubuntu-latest
needs: test-all
steps:
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_1.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_2.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_3.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_4.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_5.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_6.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_7.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_8.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_9.txt
- name: Download files
uses: actions/download-artifact@v3
continue-on-error: true
with:
name: log_10.txt
- name: Merge all
continue-on-error: true
run: |
cat log_* > error_log.txt
- name: Archive log error file
uses: actions/upload-artifact@v3
continue-on-error: true
with:
name: error_log.txt
path: error_log.txt
info-devices:
name: Setup test infos
runs-on: ubuntu-latest
needs: test-all
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_1.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_2.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_3.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_4.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_5.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_6.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_7.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_8.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_9.json
- name: Download files
uses: actions/download-artifact@v3
with:
name: test_output_10.json
- name: Merge output files
run: |
python scripts/entrypoint.py merge_output --input_pattern "test_output_*.json" --output_file full_test_output.json --key "test"
- name: Archive output file
uses: actions/upload-artifact@v3
if: always()
with:
name: full_test_output.json
path: full_test_output.json
- name: Convert to markdown
run: |
python scripts/entrypoint.py convert_output --input_file full_test_output.json --output_file out.md --key test
cat out.md >> $GITHUB_STEP_SUMMARY
- name: Echo GHA url
run: echo "url"=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} >> $GITHUB_ENV
- name: Convert to slack json
run: |
python scripts/entrypoint.py slack_output --input_file full_test_output.json --output_file slack.json --key test --url ${{ env.url }}
- name: Open Issue to summarize opened PRs
if: ${{ inputs.golden_run == true }}
run: |
python scripts/entrypoint.py create_issue --input_file full_test_output.json --access_token ${{ secrets.CI_BOT_TOKEN }}
- name: Send custom JSON data to Slack workflow
if: ${{ github.event_name == 'schedule' || inputs.send_to_slack == true }}
id: slack
uses: slackapi/[email protected]
with:
payload-file-path: slack.json
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
- name: Set job status
run: |
python scripts/entrypoint.py status_output --input_file full_test_output.json --key test