-
Notifications
You must be signed in to change notification settings - Fork 8
493 lines (420 loc) · 17.4 KB
/
runs-at-night.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
name: Runs at night
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "0 0 * * *" # run at the end of every day
env:
ALTSERVER_PORT: 13005
ALTSERVER_HOST: 192.168.11.35
PYTHON_VERSION: "3.10"
jobs:
build-webgl:
timeout-minutes: 60
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Build app
run: |
$UNITY_2021_3_HOME -batchmode -stackTraceLogType None -projectPath $CI_PROJECT_DIR -executeMethod AltTesterTools.BuildAltTester.WebGLBuildFromCommandLine -logFile buildWebGL.log -quit
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: webgl-build
if-no-files-found: error
path: build/
- name: Upload build logs
uses: actions/upload-artifact@v4
if: always()
with:
name: webgl-build-logs
path: |
buildWebGL.log
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
build-ios:
timeout-minutes: 60
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Build sampleGame ipa
run: |
$UNITY_2021_3_HOME -batchmode -stackTraceLogType None -projectPath -executeMethod AltTesterTools.BuildAltTester.IosBuildFromCommandLine -logFile buildiOS.log -quit
xcodebuild -project ./sampleGame/Unity-iPhone.xcodeproj -scheme Unity-iPhone -archivePath Unity-iPhone.xcarchive archive
xcodebuild -exportArchive -archivePath ./Unity-iPhone.xcarchive -exportOptionsPlist $EXPORT_OPTIONS_LOCATION/export-options.plist -exportPath ./
osascript -e 'tell app "Xcode" to quit'
- name: Upload builds
uses: actions/upload-artifact@v4
with:
name: ios-build
if-no-files-found: error
path: sampleGame.ipa
- name: Upload build logs
uses: actions/upload-artifact@v4
if: always()
with:
name: ios-build-logs
path: |
**/*.log
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
build-android:
timeout-minutes: 60
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Build SampleGame apk
run: |
$UNITY_2021_3_HOME -batchmode -stackTraceLogType None -projectPath $CI_PROJECT_DIR -executeMethod AltTesterTools.BuildAltTester.AndroidBuildFromCommandLine -logFile buildAndroid.log -quit
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: android-build
if-no-files-found: error
path: sampleGame.apk
- name: Upload build logs
uses: actions/upload-artifact@v4
if: always()
with:
name: android-build-logs
path: |
**/*.log
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
test-webgl-dotnet:
timeout-minutes: 60 # Set job timeout to 1 hour
needs: build-webgl
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
- name: Download build
uses: actions/download-artifact@v4
with:
name: webgl-build
- name: Open application
run: |
cd webgl
python3 -m http.server --cgi 8360 &
echo $! > server.pid # Store server PID
osascript -e 'quit app "Google Chrome"'
sleep 5
open -a "Google Chrome" http://localhost:8360/index.html
sleep 10 # Give some time for Chrome to open and load the page
- name: Run tests
run: |
dotnet test Bindings~/dotnet/AltDriver.Tests/AltDriver.Tests.csproj --logger:"console;verbosity=detailed" --filter TestCategory!=WebGLUnsupported
- name: Close Chrome and stop server
if: always()
run: |
osascript -e 'quit app "Google Chrome"'
sleep 5 # Ensure there's a delay to give Chrome time to close
pkill -x "Google Chrome" || true # Forcefully kill any remaining Chrome processes
if [ -f server.pid ]; then
kill $(cat server.pid) # Stop the Python server
rm server.pid
fi
- name: Upload logs
uses: actions/upload-artifact@v4
if: always() # run this step even if one of the previous step failed
with:
name: webgl-dotnet-logs
path: |
**/*.log
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
test-webgl-python:
timeout-minutes: 60 # Set job timeout to 1 hour
needs: build-webgl
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Download build
uses: actions/download-artifact@v4
with:
name: webgl-build
- name: Open application
run: |
cd webgl
python3 -m http.server --cgi 8360 &
echo $! > server.pid # Store server PID
osascript -e 'quit app "Google Chrome"'
sleep 5
open -a "Google Chrome" http://localhost:8360/index.html
sleep 10 # Give some time for Chrome to open and load the page
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip uninstall -y AltTester-Driver
pip install -r "Bindings~/python/requirements.txt"
pip install -r "Bindings~/python/requirements-dev.txt"
pip install -e "Bindings~/python" --root "Bindings~/python"
- name: Run integration tests
run: |
pytest Bindings~/python/tests/integration -m "not WebGLUnsupported"
- name: Close Chrome and stop server
if: always()
run: |
osascript -e 'quit app "Google Chrome"'
sleep 5 # Ensure there's a delay to give Chrome time to close
pkill -x "Google Chrome" || true # Forcefully kill any remaining Chrome processes
if [ -f server.pid ]; then
kill $(cat server.pid) # Stop the Python server
rm server.pid
fi
- name: Upload logs
uses: actions/upload-artifact@v4
if: always() # run this step even if one of the previous step failed
with:
name: webgl-python-logs
path: "**/*.log"
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
test-webgl-java:
timeout-minutes: 60 # Set job timeout to 1 hour
needs: build-webgl
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Setup Maven
uses: stCarolas/setup-maven@v4
- name: Download build
uses: actions/download-artifact@v4
with:
name: webgl-build
- name: Open application
run: |
cd webgl
python3 -m http.server --cgi 8360 &
echo $! > server.pid # Store server PID
osascript -e 'quit app "Google Chrome"'
sleep 5
open -a "Google Chrome" http://localhost:8360/index.html
sleep 10 # Give some time for Chrome to open and load the page
- name: Run tests
run: |
cd Bindings~/java
mvn clean -Dtest=com.alttester.Tests* test -Dgroups=\!WebGLUnsupported
- name: Close Chrome
if: always()
run: |
osascript -e 'quit app "Google Chrome"'
sleep 5 # Ensure there's a delay to give Chrome time to close
pkill -x "Google Chrome" || true # Forcefully kill any remaining Chrome processes
- name: Upload logs
uses: actions/upload-artifact@v4
if: always()
with:
name: webgl-java-logs
path: |
**/*.log
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
test-ios-browserstack-python:
needs: build-ios
timeout-minutes: 60 # Set job timeout to 1 hour
runs-on: [self-hosted, macOS]
env:
RUN_IN_BROWSERSTACK: true
RUN_IN_BROWSERSTACK_IOS_ONLY: true
steps:
- uses: actions/checkout@v4
- name: Download build
uses: actions/download-artifact@v4
with:
name: ios-build
path: Bindings~/python/
- run: ls -l Bindings~/python/
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip uninstall -y AltTester-Driver
pip install -r "Bindings~/python/requirements.txt"
pip install -r "Bindings~/python/requirements-dev.txt"
pip install -e "Bindings~/python" --root "Bindings~/python"
- name: Run integration tests
run: |
export BROWSERSTACK_USERNAME=${{ secrets.BROWSERSTACK_USERNAME }}
export BROWSERSTACK_KEY=${{ secrets.BROWSERSTACK_KEY }}
export ALTSERVER_PORT=13005
export ALTSERVER_HOST="192.168.11.35"
export RUN_IN_BROWSERSTACK="true"
export RUN_IN_BROWSERSTACK_IOS_ONLY="true"
cd Bindings~/python
export response_ios=$(curl -u "$BROWSERSTACK_USERNAME:$BROWSERSTACK_KEY" -X POST "https://api-cloud.browserstack.com/app-automate/upload" -F "file=@sampleGame.ipa")
export APP_URL_IOS=$(echo "${response_ios}" | jq -r .app_url)
echo $APP_URL_IOS
cd tests/integration/
pkill -f BrowserStackLocal || true
/usr/local/bin/BrowserStackLocal --key $BROWSERSTACK_KEY --force > bs_local.log &
sleep 5
pytest -s -v -n 3 ./ --alluredir=allure-report/ --reruns 3 --reruns-delay 10 --dist=loadfile -m "not iOSUnsupported and not AndroidUnsupported and not WebGLUnsupported"
pkill -f BrowserStackLocal || true
- name: Generate Allure report
if: always()
run: |
cd Bindings~/python/
allure generate -c allure-report -o allure-results-html
allure-combine ./allure-results-html
- name: Upload artifact and allure report
uses: actions/upload-artifact@v4
if: always()
with:
name: ios-browserstack-python-artifacts
path: |
**/*.log
./allure-results-html/complete.html
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
test-android-browserstack-python:
needs: build-android
timeout-minutes: 60 # Set job timeout to 1 hour
runs-on: [self-hosted, macOS]
env:
RUN_IN_BROWSERSTACK: true
RUN_IN_BROWSERSTACK_ANDROID_ONLY: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Download build
uses: actions/download-artifact@v4
with:
name: android-build
path: Bindings~/python/
- run: ls -l Bindings~/python/
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip uninstall -y AltTester-Driver
pip install -r "Bindings~/python/requirements.txt"
pip install -r "Bindings~/python/requirements-dev.txt"
pip install -e "Bindings~/python" --root "Bindings~/python"
- name: Run integration tests
run: |
export BROWSERSTACK_USERNAME=${{ secrets.BROWSERSTACK_USERNAME }}
export BROWSERSTACK_KEY=${{ secrets.BROWSERSTACK_KEY }}
export ALTSERVER_PORT=13005
export ALTSERVER_HOST="192.168.11.35"
export RUN_IN_BROWSERSTACK="true"
export RUN_IN_BROWSERSTACK_ANDROID_ONLY="true"
cd Bindings~/python
export response_android=$(curl -u "$BROWSERSTACK_USERNAME:$BROWSERSTACK_KEY" -X POST "https://api-cloud.browserstack.com/app-automate/upload" -F "file=@sampleGame.apk")
echo $response_android
export APP_URL_ANDROID=$(echo "${response_android}" | jq -r .app_url)
echo $APP_URL_ANDROID
cd tests/integration/
pkill -f BrowserStackLocal || true
/usr/local/bin/BrowserStackLocal --key $BROWSERSTACK_KEY --force > bs_local.log &
sleep 5
pytest -s -v -n 3 ./ --alluredir=allure-report/ --reruns 3 --reruns-delay 10 --dist=loadfile -m "not AndroidUnsupported"
pkill -f BrowserStackLocal || true
- name: Upload logs
uses: actions/upload-artifact@v4
if: always()
with:
name: android-browserstack-python-logs
path: "**/*.log"
- name: Notify on Slack
uses: ravsamhq/notify-slack-action@v2
if: ${{ always() && github.ref_name == 'development' }}
with:
status: ${{ job.status }}
notification_title: "The Job *{job}* in Workflow *{workflow}* has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "Linked Repo <{repo_url}|{repo}>"
notify_when: "failure"
mention_groups: "alttester-pipelines,!here"
mention_groups_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}