36
36
37
37
jobs :
38
38
buildForAllPlatformsUbuntu :
39
- name : ${{ matrix.targetPlatform }} on ${{ matrix.unityVersion }}
39
+ name :
40
+ " ${{ matrix.targetPlatform }} on ${{ matrix.unityVersion}}${{startsWith(matrix.buildProfile, 'Assets') && ' (via Build Profile)' || '' }}"
40
41
runs-on : ubuntu-latest
41
42
strategy :
42
43
fail-fast : false
@@ -142,6 +143,7 @@ jobs:
142
143
with :
143
144
buildName : ' GameCI Test Build'
144
145
projectPath : ${{ matrix.projectPath }}
146
+ buildProfile : ${{ matrix.buildProfile }}
145
147
unityVersion : ${{ matrix.unityVersion }}
146
148
targetPlatform : ${{ matrix.targetPlatform }}
147
149
customParameters : -profile SomeProfile -someBoolean -someValue exampleValue ${{ matrix.additionalParameters }}
@@ -164,6 +166,7 @@ jobs:
164
166
with :
165
167
buildName : ' GameCI Test Build'
166
168
projectPath : ${{ matrix.projectPath }}
169
+ buildProfile : ${{ matrix.buildProfile }}
167
170
unityVersion : ${{ matrix.unityVersion }}
168
171
targetPlatform : ${{ matrix.targetPlatform }}
169
172
customParameters : -profile SomeProfile -someBoolean -someValue exampleValue ${{ matrix.additionalParameters }}
@@ -185,6 +188,7 @@ jobs:
185
188
with :
186
189
buildName : ' GameCI Test Build'
187
190
projectPath : ${{ matrix.projectPath }}
191
+ buildProfile : ${{ matrix.buildProfile }}
188
192
unityVersion : ${{ matrix.unityVersion }}
189
193
targetPlatform : ${{ matrix.targetPlatform }}
190
194
customParameters : -profile SomeProfile -someBoolean -someValue exampleValue ${{ matrix.additionalParameters }}
@@ -197,7 +201,6 @@ jobs:
197
201
- uses : actions/upload-artifact@v4
198
202
with :
199
203
name :
200
- ' Build ${{ matrix.targetPlatform }} on Ubuntu (${{ matrix.unityVersion }}_il2cpp_${{ matrix.buildWithIl2cpp
201
- }}_params_${{ matrix.additionalParameters }})'
204
+ " Build ${{ matrix.targetPlatform }}${{ startsWith(matrix.buildProfile, 'Assets') && ' (via Build Profile)' || '' }} on Ubuntu (${{ matrix.unityVersion }}_il2cpp_${{ matrix.buildWithIl2cpp }}_params_${{ matrix.additionalParameters }})"
202
205
path : build
203
206
retention-days : 14
0 commit comments