-
Notifications
You must be signed in to change notification settings - Fork 5
456 lines (383 loc) · 13 KB
/
ui-automated-windows.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
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
name: UI Tests on Windows only 🧪
on:
schedule:
- cron: "0 0/6 * * 1-5"
pull_request:
types: [opened, synchronize, reopened, edited]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_TERM_COLOR: always
jobs:
build-windows:
runs-on:
labels: windows-latest
steps:
- name: Checkout testing directory 🔖
uses: actions/checkout@v3
with:
repository: Satellite-im/Uplink
- name: Install Rust 💿
uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
override: true
components: rustfmt, clippy
- name: Build executable 🖥️
run: cargo build --release -F production_mode
continue-on-error: true
- name: Create ZIP archive on Windows 🗳️
run: Compress-Archive -Path target/release/uplink.exe -Destination uplinkWindows.zip
- name: Copy Extensions 🗳️
run: |
mkdir ./ui/extra/extensions
cp -r ./target/release/emoji_selector.d ./ui/extra/extensions/
cp -r ./target/release/emoji_selector.dll ./ui/extra/extensions/
cp -r ./target/release/emoji_selector.dll.exp ./ui/extra/extensions/
cp -r ./target/release/emoji_selector.dll.lib ./ui/extra/extensions/
cp -r ./target/release/emoji_selector.pdb ./ui/extra/extensions/
- name: Upload Executable ⬆️
uses: actions/upload-artifact@v3
with:
name: Uplink-windows-latest
path: uplinkWindows.zip
- name: Upload Windows Assets
uses: actions/upload-artifact@v3
with:
name: uplink-windows-assets
path: |
ui/extra/images/
ui/extra/prism_langs/
ui/extra/themes/
ui/extra/extensions/
- name: Add label if any of build jobs failed
if: failure()
uses: buildsville/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Failed Automated Test
type: add
test-windows-chats:
needs: build-windows
runs-on: windows-latest
steps:
- name: Checkout testing directory 🔖
uses: actions/checkout@v3
- name: Change resolution on Windows Runner
run: Set-DisplayResolution -Width 1920 -Height 1080 -Force
shell: powershell
- name: Download the Windows app 🗳️
uses: actions/download-artifact@v3
with:
name: Uplink-windows-latest
path: ./apps
- name: Extract .zip into apps Directory 🗳️
run: Expand-Archive -Path ./apps/uplinkWindows.zip -DestinationPath ./apps
- name: Download the Windows app assets
uses: actions/download-artifact@v3
with:
name: uplink-windows-assets
path: ./apps
- name: Copy app to have two instances 💿
working-directory: ./apps
run: |
cp -r ./uplink.exe ./uplink2.exe
- name: Move Windows assets to correct locations 💿
working-directory: ./apps
run: |
mkdir ./bin/extra
mkdir ./extra
mv ./uplink.exe ./bin/
mv ./uplink2.exe ./bin/
mv ./images/ ./bin/extra/
mv ./prism_langs/ ./bin/extra/
mv ./themes/ ./extra/
- name: Setup Node.js 🔨
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Cache NPM dependencies 🔨
uses: actions/cache@v3
id: cache-windows-chats
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install NPM dependencies 📦
if: steps.cache-windows-chats.outputs.cache-hit != 'true'
run: npm ci
- name: Install Appium Server 💻
run: |
npm install -g appium@next
appium -v
- name: Install Appium Driver 💻
run: |
appium driver install --source=npm appium-windows-driver
appium driver list
- name: Setup FFMPEG to record screen
uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- name: Delete Cache Folder if exists - Windows
run: If (Test-Path $home/.uplink/.user) {Remove-Item -Recurse -Force $home/.uplink/.user} Else { Break }
shell: powershell
- name: Run Chat Tests on Windows 🧪
run: npm run windows.multiremote
- name: Upload Test Report - Windows Chats
if: always()
uses: actions/upload-artifact@v3
with:
name: test-report-windows-chats
path: ./test-report/*.xml
- name: Upload Allure Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-allure-windows-chats
path: ./allure-results/
- name: Upload Screenshots for Windows - Chats 📷
uses: actions/upload-artifact@v3
if: failure()
with:
name: appium-screenshots-windows-chats
path: ./test-results
- name: Upload Appium Log for Windows - Chats 📷
uses: actions/upload-artifact@v3
if: failure()
with:
name: appium-log-windows-chats
path: |
./appium.log
- name: Add label if any of test jobs failed
if: failure()
uses: buildsville/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Failed Automated Test
type: add
test-windows:
needs: build-windows
runs-on: windows-latest
steps:
- name: Checkout testing directory 🔖
uses: actions/checkout@v3
- name: Change resolution on Windows Runner
run: Set-DisplayResolution -Width 1920 -Height 1080 -Force
shell: powershell
- name: Download the Windows app 🗳️
uses: actions/download-artifact@v3
with:
name: Uplink-windows-latest
path: ./apps
- name: Extract .zip into apps Directory 🗳️
run: Expand-Archive -Path ./apps/uplinkWindows.zip -DestinationPath ./apps
- name: Download the Windows app assets
uses: actions/download-artifact@v3
with:
name: uplink-windows-assets
path: ./apps
- name: Move Windows assets to correct locations 💿
working-directory: ./apps
run: |
mkdir ./bin/extra
mkdir ./extra
mv ./uplink.exe ./bin/
mv ./images/ ./bin/extra/
mv ./prism_langs/ ./bin/extra/
mv ./themes/ ./extra/
- name: Setup Node.js 🔨
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Cache NPM dependencies 🔨
uses: actions/cache@v3
id: cache-windows
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install NPM dependencies 📦
if: steps.cache-windows.outputs.cache-hit != 'true'
run: npm ci
- name: Install and Run Appium Server 💻
run: |
npm install -g appium@next
appium -v
- name: Install Appium Driver 💻
run: |
appium driver install --source=npm appium-windows-driver
appium driver list
- name: Setup FFMPEG to record screen
uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- name: Delete Cache Folder if exists - Windows
run: If (Test-Path $home/.uplink/.user) {Remove-Item -Recurse -Force $home/.uplink/.user} Else { Break }
shell: powershell
- name: Run Tests on Windows 🧪
id: test-execution-windows
run: npm run windows.ci
- name: Upload Test Report - Windows CI
if: always()
uses: actions/upload-artifact@v3
with:
name: test-report-windows-ci
path: ./test-report/*.xml
- name: Upload Allure Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-allure-windows-ci
path: ./allure-results/
- name: Upload Screenshots for Windows 📷
uses: actions/upload-artifact@v3
if: failure()
with:
name: appium-screenshots-windows
path: ./test-results
- name: Upload Appium Log for Windows 📷
uses: actions/upload-artifact@v3
if: failure()
with:
name: appium-log-windows
path: ./appium.log
- name: Add label if any of test jobs failed
if: failure()
uses: buildsville/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Failed Automated Test
type: add
publish-test-results:
if: always()
needs:
#[build-mac, build-windows, test-mac, test-mac-chats, test-windows-chats, test-windows]
[build-windows, test-windows-chats, test-windows]
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
contents: write
issues: read
steps:
#- name: Download Test Report for MacOS CI
# uses: actions/download-artifact@v3
# with:
# name: test-report-macos-ci
# path: artifacts
#- name: Download Test Report for MacOS Chat A
# uses: actions/download-artifact@v3
# with:
# name: test-report-macos-chatA
# path: artifacts
#- name: Download Test Report for MacOS Chat B
# uses: actions/download-artifact@v3
# with:
# name: test-report-macos-chatB
# path: artifacts
- name: Download Test Report for Windows Chats
uses: actions/download-artifact@v3
with:
name: test-report-windows-chats
path: artifacts
- name: Download Test Report for Windows CI
uses: actions/download-artifact@v3
with:
name: test-report-windows-ci
path: artifacts
#- name: Download Allure Results for MacOS CI
# uses: actions/download-artifact@v3
# with:
# name: test-allure-mac-ci
# path: allure
#- name: Download Allure Results for MacOS Chat A
# uses: actions/download-artifact@v3
# with:
# name: test-allure-mac-chatA
# path: allure
#- name: Download Allure Results for MacOS Chat B
# uses: actions/download-artifact@v3
# with:
# name: test-allure-mac-chatB
# path: allure
- name: Download Allure Results for Windows CI
uses: actions/download-artifact@v3
with:
name: test-allure-windows-ci
path: allure
- name: Download Allure Results for Windows Chats
uses: actions/download-artifact@v3
with:
name: test-allure-windows-chats
path: allure
- name: Publish Test Results for Tests
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: success()
with:
junit_files: "artifacts/**/*.xml"
ignore_runs: true
job_summary: false
compare_to_earlier_commit: false
check_name: "UI Automated Test Results Summary for MacOS/Windows"
- name: Get Allure history
uses: actions/checkout@v3
if: success()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Allure Report action from marketplace
uses: simple-elf/allure-report-action@master
if: success()
id: allure-report
with:
gh_pages: gh-pages
allure_results: allure
allure_report: allure-report
allure_history: allure-history
keep_reports: 20
- name: Deploy report to Github Pages
if: success()
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: allure-history
- name: Comment PR with the Test Results
if: success()
uses: mshick/add-pr-comment@v2
with:
message: |
UI Automated Tests execution is complete! You can find the test results report [here](https://satellite-im.github.io/testing-uplink/${{ github.run_number }})
remove-artifacts:
needs:
[
build-windows,
test-windows-chats,
test-windows,
publish-test-results,
]
runs-on: ubuntu-latest
steps:
- name: Checkout testing directory 🔖
uses: actions/checkout@v3
- name: Remove label if all test jobs succeeded
uses: buildsville/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Failed Automated Test
type: remove
- name: Delete artifacts
uses: geekyeggo/delete-artifact@v2
with:
name: |
Uplink-windows-latest
test-report-windows-chats
test-report-windows-ci
test-allure-windows-chats
test-allure-windows-ci