forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 4
447 lines (384 loc) · 16 KB
/
main.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
name: Build
on: [push, pull_request]
jobs:
build:
name: build-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
fail-fast: false
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/[email protected]
- name: Setup Premake5
uses: abel0b/[email protected]
with:
version: "5.0.0-beta2"
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '17'
- name: Install Vulkan SDK
uses: humbletim/[email protected]
with:
version: 1.3.283.0
cache: true
- name: Disable annotations
run: echo "::remove-matcher owner=csc::"
- name: install wine64 on linux
run: |
sudo apt install p7zip-full curl
sudo dpkg --add-architecture i386
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
sudo apt update && sudo apt install --install-recommends winehq-stable
if: runner.os == 'Linux'
- name: Install Arial Font
run: |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
sudo apt install -y ttf-mscorefonts-installer
sudo fc-cache
fc-match Arial
if: runner.os == 'Linux'
- name: install wine64 on macos
run: |
brew install wine-stable p7zip freeimage freetype
sudo mkdir -p /usr/local/lib
sudo ln -s /opt/homebrew/lib/libfreetype.dylib /usr/local/lib/libfreetype6.dylib
sudo ln -s /opt/homebrew/lib/libfreeimage.dylib /usr/local/lib/libfreeimage.dylib
if: runner.os == 'macOS'
- name: Setup Wine
run: wget -qO- https://monogame.net/downloads/net9_mgfxc_wine_setup.sh | bash
if: runner.os != 'Windows'
- name: Install required workloads
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
dotnet workload install android
elif [ "$RUNNER_OS" == "Windows" ]; then
dotnet.exe workload install android ios macos
else
dotnet workload install android
fi
shell: bash
- name: Build
run: dotnet run --project build/Build.csproj -- --target=Default
- name: Test
run: dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release --filter="TestCategory!=Audio"
env:
DOTNET_ROOT: ${{github.workspace}}/dotnet64
MGFXC_WINE_PATH: /home/runner/.winemonogame
CI: true
if: runner.os == 'Linux'
- name: Test
run: dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release --filter="TestCategory!=Audio"
env:
DOTNET_ROOT: ${{github.workspace}}/dotnet64
MGFXC_WINE_PATH: /Users/runner/.winemonogame
CI: true
if: runner.os == 'macOS'
- name: Test
run: dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release
env:
CI: true
if: runner.os == 'Windows'
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Upload Artifacts
run: dotnet run --project build/Build.csproj -- --target=UploadArtifacts
env:
ACTIONS_RUNTIME_TOKEN: ${{ env.ACTIONS_RUNTIME_TOKEN }}
ACTIONS_RUNTIME_URL: "${{ env.ACTIONS_RUNTIME_URL }}"
deploy:
name: Deploy
needs: [ build ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
permissions:
packages: write
contents: write
steps:
- name: Clone Repository
uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Push Nugets
run: dotnet run --project build/Build.csproj -- --target=Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
- name: Make a Release
if: github.ref_type == 'tag'
uses: ncipollo/release-action@v1
with:
name: 'MonoGame ${{ github.ref_name }}'
tag: ${{ github.ref_name }}
allowUpdates: true
removeArtifacts: true
artifacts: "nugets/*.nupkg"
token: ${{ secrets.GITHUB_TOKEN }}
tests:
name: tests-${{ matrix.os }}
needs: [ build ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows
platform: windows
- os: macos
platform: macos
- os: ubuntu-latest
platform: linux
filter: --where="Category != Audio"
# - os: linux
# platform: linux
fail-fast: false
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
#if: runner.environment == 'github-hosted'
- name: install wine64 on linux
run: |
sudo apt install p7zip-full curl
sudo dpkg --add-architecture i386
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
sudo apt update && sudo apt install --install-recommends winehq-stable
if: runner.os == 'Linux' && runner.environment == 'github-hosted'
- name: Install Arial Font
run: |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
sudo apt install -y ttf-mscorefonts-installer
sudo fc-cache
fc-match Arial
if: runner.os == 'Linux' && runner.environment == 'github-hosted'
- name: Setup Wine
run: wget -qO- https://monogame.net/downloads/net9_mgfxc_wine_setup.sh | bash
if: runner.os != 'Windows' && runner.environment == 'github-hosted'
- name: Download tests-tools-${{ matrix.platform }}
uses: actions/download-artifact@v3
with:
name: tests-tools-${{ matrix.platform }}
path: tests-tools
- name: Download tests-desktopgl-${{ matrix.platform }}
uses: actions/download-artifact@v3
with:
name: tests-desktopgl-${{ matrix.platform }}
path: tests-desktopgl
- name: Download tests-windowsdx-${{ matrix.platform }}
uses: actions/download-artifact@v3
with:
name: tests-windowsdx-${{ matrix.platform }}
path: tests-windowsdx
if: runner.os == 'Windows'
- name: Install Tools
run: |
dotnet tool install --create-manifest-if-needed mgcb-basisu
dotnet tool install --create-manifest-if-needed mgcb-crunch
- name: Run Tools Tests
run: dotnet test tests-tools/MonoGame.Tools.Tests.dll --blame-hang-timeout 1m --filter="TestCategory!=Effects"
env:
CI: true
- name: Run DirectX Tests
shell: cmd
run: dotnet MonoGame.Tests.dll
env:
CI: true
working-directory: tests-windowsdx
if: runner.os == 'Windows'
# Run the DesktopGL tests on all platforms using NUnitLite runner not dotnet test
# We have to run this is bits because the tests crash if too many are run in one go?
- name: Run Framework Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Framework ${{matrix.filter}}
env:
CI: true
working-directory: tests-desktopgl
- name: Run Audio Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Audio
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Input Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Input
env:
CI: true
working-directory: tests-desktopgl
- name: Run Visual Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Visual
env:
CI: true
working-directory: tests-desktopgl
- name: Run Game Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --where="Category = GameTest"
env:
CI: true
working-directory: tests-desktopgl
- name: Run Graphics.BlendStateTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.BlendStateTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.DepthStencilStateTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.DepthStencilStateTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.EffectTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.EffectTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.GraphicsAdapterTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.GraphicsAdapterTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
# This test hangs on MacOS?
# - name: Run Graphics.GraphicsDeviceTest Tests
# run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.GraphicsDeviceTest
# env:
# CI: true
# working-directory: tests-desktopgl
# if: runner.environment != 'github-hosted'
- name: Run Graphics.IndexBufferTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.IndexBufferTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.MiscellaneousTests Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.MiscellaneousTests
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.ModelTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ModelTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.OcclusionQueryTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.OcclusionQueryTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.RasterizerStateTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RasterizerStateTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.RenderTarget2DTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RenderTarget2DTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.RenderTargetCubeTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RenderTargetCubeTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.SamplerStateTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SamplerStateTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.ScissorRectangleTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ScissorRectangleTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.ShaderTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ShaderTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.SpriteBatchTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SpriteBatchTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.SpriteFontTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SpriteFontTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.Texture2DNonVisualTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture2DNonVisualTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.Texture2DTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture2DTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.Texture3DNonVisualTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture3DNonVisualTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.Texture3DTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture3DTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.TextureCubeTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.TextureCubeTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.VertexBufferTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.VertexBufferTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
- name: Run Graphics.ViewportTest Tests
run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ViewportTest
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'