-
Notifications
You must be signed in to change notification settings - Fork 2
314 lines (264 loc) · 11.5 KB
/
ci.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
name: CI - Run Tests + Build Sample App
on:
pull_request:
branches: [ main, develop ]
push:
branches: [ main, develop ]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
jobs:
testRunner:
strategy:
fail-fast: false
matrix:
os: [macos-latest]
unity_version: [2021.3.27, 2022.3.4]
dotnet_version: [NET_4_x, STANDARD_2_x]
compiler: [il2cpp]
target_platform: [standalone, mobile]
name: Run tests + Build Sample APp
runs-on: ${{ matrix.os }}
timeout-minutes: 600
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Print chipset
shell: bash
run: uname -m
continue-on-error: true
- name: Set up Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Print python version
shell: bash
run: python --version
continue-on-error: true
- name: Install node package, `unity-license-activate`
run: npm install --global https://github.com/sierpinskid/unity-license-activate
- name: Install node package, `unity-verify-code`
run: npm install --global https://github.com/sierpinskid/unity-verify-code
- name: Download Unity & Modules
if: ${{ matrix.os }} == 'macos-latest'
shell: bash
run: |
if [[ ${{ matrix.unity_version }} == '2021.3.27' ]]
then
curl -L -o ~/Unity.pkg https://download.unity3d.com/download_unity/ca3ffb99bcc6/MacEditorInstaller/Unity.pkg
if [[ ${{ matrix.compiler }} == 'il2cpp' ]]
then
curl -L -o ~/UnityIL2CPPModule.pkg https://download.unity3d.com/download_unity/ca3ffb99bcc6/MacEditorTargetInstaller/UnitySetup-Mac-IL2CPP-Support-for-Editor-2021.3.27f1.pkg
fi
if [[ ${{ matrix.target_platform }} == 'mobile' ]]
then
curl -L -o ~/UnityIosModule.pkg https://download.unity3d.com/download_unity/ca3ffb99bcc6/MacEditorTargetInstaller/UnitySetup-iOS-Support-for-Editor-2021.3.27f1.pkg
fi
elif [[ ${{ matrix.unity_version }} == '2022.3.4' ]]
then
curl -L -o ~/Unity.pkg https://download.unity3d.com/download_unity/35713cd46cd7/MacEditorInstaller/Unity.pkg
if [[ ${{ matrix.compiler }} == 'il2cpp' ]]
then
curl -L -o ~/UnityIL2CPPModule.pkg https://download.unity3d.com/download_unity/35713cd46cd7/MacEditorTargetInstaller/UnitySetup-Mac-IL2CPP-Support-for-Editor-2022.3.4f1.pkg
fi
if [[ ${{ matrix.target_platform }} == 'mobile' ]]
then
curl -L -o ~/UnityIosModule.pkg https://download.unity3d.com/download_unity/35713cd46cd7/MacEditorTargetInstaller/UnitySetup-iOS-Support-for-Editor-2022.3.4f1.pkg
fi
fi
- name: Install Unity
uses: nick-fields/retry@v2
with:
timeout_minutes: 15
max_attempts: 3
shell: bash
command: sudo installer -package ~/Unity.pkg -target /
- name: Instal IL2CPP Module
if: matrix.compiler == 'il2cpp'
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
shell: bash
command: sudo installer -package ~/UnityIL2CPPModule.pkg -target /
- name: Instal Mobile Module
if: matrix.target_platform == 'mobile'
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
shell: bash
command: sudo installer -package ~/UnityIosModule.pkg -target /
- name: Create Test Results dir
shell: bash
run: mkdir test_results
- name: Generate .ALF license file
shell: bash
run: sudo /Applications/Unity/Unity.app/Contents/MacOS/Unity -batchmode -nographics -createManualActivationFile -quit
continue-on-error: true #Unity return exit code 1 even if successfully creating license file
- name: List dir
shell: bash
run: |
ls
grep ".alf$"
ULF_FILE_PATH=$(ls | grep ".alf$")
echo $ULF_FILE_PATH
continue-on-error: true
- name: Ensure code file exists
shell: bash
run: touch ./code.txt
continue-on-error: true
- name: Activate .ALF License - Get .ULF file
id: generate_ulf_license_attempt_1
shell: bash
run: sudo unity-license-activate "${{ secrets.UNITY_ACCOUNT_USER }}" "${{ secrets.UNITY_ACCOUNT_PASS }}" "$(ls | grep ".alf$")" --password "${{ secrets.EMAIL_PASS }}" --host "imap.gmail.com"
timeout-minutes: 25
continue-on-error: true
- name: Activate .ALF License - Get .ULF file - Attempt 2
if: steps.generate_ulf_license_attempt_1.outcome == 'failure'
id: generate_ulf_license_attempt_2
shell: bash
run: sudo unity-license-activate "${{ secrets.UNITY_ACCOUNT_USER }}" "${{ secrets.UNITY_ACCOUNT_PASS }}" "$(ls | grep ".alf$")" --password "${{ secrets.EMAIL_PASS }}" --host "imap.gmail.com"
timeout-minutes: 25
continue-on-error: true
- name: Activate .ALF License - Get .ULF file - Attempt 3
if: steps.generate_ulf_license_attempt_2.outcome == 'failure'
id: generate_ulf_license_attempt_3
shell: bash
run: sudo unity-license-activate "${{ secrets.UNITY_ACCOUNT_USER }}" "${{ secrets.UNITY_ACCOUNT_PASS }}" "$(ls | grep ".alf$")" --password "${{ secrets.EMAIL_PASS }}" --host "imap.gmail.com"
timeout-minutes: 25
continue-on-error: true
- name: 🩺 Upload error screenshot
if: steps.generate_ulf_license_attempt_1.outcome == 'failure'
uses: actions/upload-artifact@v1
continue-on-error: true
with:
name: screenshot_error_1
path: error.png
- name: 🩺 Upload error screenshot 2
if: steps.generate_ulf_license_attempt_2.outcome == 'failure'
uses: actions/upload-artifact@v1
continue-on-error: true
with:
name: screenshot_error_2
path: error.png
- name: 🩺 Upload error screenshot 3
if: steps.generate_ulf_license_attempt_3.outcome == 'failure'
uses: actions/upload-artifact@v1
continue-on-error: true
with:
name: screenshot_error_3
path: error.png
- name: Activate Unity with .ULF license file
shell: bash
run: sudo /Applications/Unity/Unity.app/Contents/MacOS/Unity -batchmode -nographics -manualLicenseFile "$(ls | grep ".ulf$")" -quit
continue-on-error: true #Unity return exit code 1 even if successfully activating with license file
- name: LS Unity Logs dir
shell: bash
run: ls ~/Library/Logs/Unity/
continue-on-error: true
- name: Print Audit Unity Logs
shell: bash
run: cat ~/Library/Logs/Unity/Unity.Entitlements.Audit.log
continue-on-error: true
- name: Print Client Unity Logs
shell: bash
run: cat ~/Library/Logs/Unity/Unity.Licensing.Client.log
continue-on-error: true
- name: Print Unity Editor Logs
shell: bash
run: cat ~/Library/Logs/Unity/Editor.log
continue-on-error: true
- name: Enable Stream Tests in Unity
shell: bash
run: |
success=false
for i in {1..3}; do
output=$(sudo /Applications/Unity/Unity.app/Contents/MacOS/Unity -batchmode -nographics -projectPath "$GITHUB_WORKSPACE" -executeMethod StreamVideo.EditorTools.StreamEditorTools.EnableStreamTestsEnabledCompilerFlag -quit 2>&1)
echo "$output"
if [[ ! "$output" == *"License is not active"* ]]; then
success=true
break
fi
echo "Attempt $i failed due to inactive license, retrying..."
done
if [ "$success" = false ]; then
echo "All attempts failed."
exit 1
fi
#skip -quit due to not working with async tests
- name: Run Unity Tests
id: run_unity_tests
shell: bash
run: sudo /Applications/Unity/Unity.app/Contents/MacOS/Unity -batchmode -nographics -projectPath "$GITHUB_WORKSPACE" -runTests -testResults ~/test_results/results.xml -streamBase64TestDataSet ${{ secrets.STREAM_AUTH_TEST_DATA_BASE64 }}
continue-on-error: true
#due to skipped -quit
- name: Force Close Unity
shell: bash
run: sudo pkill -x Unity
continue-on-error: true
- name: Print Test Results
if: always()
shell: bash
run: cat ~/test_results/results.xml
- name: Print Unity Logs
shell: bash
run: cat ~/Library/Logs/Unity/Editor.log
continue-on-error: true
- name: Generate HTML test report
uses: rempelj/[email protected]
if: always()
with:
inputXmlPath: ~/test_results/results.xml
outputHtmlPath: ~/test_results/results.html
- name: Upload tests results XML Artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ matrix.os }}_${{ matrix.unity_version }}_${{ matrix.compiler }}_${{ matrix.dotnet_version }}_${{ matrix.target_platform }}_test_results.xml
path: ~/test_results/results.xml
- name: Upload tests results Html Artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ matrix.os }}_${{ matrix.unity_version }}_${{ matrix.compiler }}_${{ matrix.dotnet_version }}_${{ matrix.target_platform }}_test_results.html
path: ~/test_results/results.html
- name: Validate All Tests Passed
if: steps.run_unity_tests.outcome == 'failure'
run: exit 1
- name: Generate GH Summary Comment
uses: sierpinskid/nunit-github-comment@v1
if: github.event_name == 'pull_request'
with:
inputXmlPath: ~/test_results/results.xml
outputFilePath: ~/test_results/gh_comment.txt
- name: Set GH Comment as variable
if: github.event_name == 'pull_request'
id: generate_gh_comment
run: echo "::set-output name=gh_comment::$(cat ~/test_results/gh_comment.txt)"
- name: Build Sample App
shell: bash
run: sudo /Applications/Unity/Unity.app/Contents/MacOS/Unity -batchmode -nographics -projectPath "$GITHUB_WORKSPACE" -executeMethod "StreamVideo.EditorTools.StreamEditorTools.BuildSampleApp" -apiCompatibility ${{ matrix.dotnet_version }} -scriptingBackend ${{ matrix.compiler }} -buildTargetPlatform ${{ matrix.target_platform }} -buildTargetPath "~/SampleAppBuild/App" -quit
- name: LS
shell: bash
run: |
ls
echo '----'
ls ~
echo '----'
ls "~/SampleAppBuild/"
echo '----'
ls "~/SampleAppBuild/App/"
echo '----'
continue-on-error: true
- name: Upload Sample App
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}_${{ matrix.unity_version }}_${{ matrix.compiler }}_${{ matrix.dotnet_version }}_${{ matrix.target_platform }}_sample_app
path: ~/SampleAppBuild/App/