-
Notifications
You must be signed in to change notification settings - Fork 50
43 lines (42 loc) · 1.22 KB
/
tests.yaml
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
name: tests
on: [workflow_dispatch]
jobs:
windows-direct3d11:
runs-on: [self-hosted, Windows]
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
lfs: true
- run: |
cd examples
..\\pmbuild win32 -libs
..\\pmbuild win32
..\\pmbuild make win32 all /p:Platform=x64 /p:Configuration=Release
..\\pmbuild launch win32 all -test
windows-opengl:
runs-on: [self-hosted, Windows]
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
lfs: true
- run: |
cd examples
..\\pmbuild win32-gl -libs
..\\pmbuild win32-gl
..\\pmbuild make win32-gl all /p:Platform=x64 /p:Configuration=Release
..\\pmbuild launch win32-gl all -test
macos-metal:
runs-on: [self-hosted, MacOS]
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
lfs: true
- run: |
cd examples
../pmbuild mac -libs
../pmbuild mac
../pmbuild make mac all -configuration Release -quiet CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
../pmbuild launch mac all -test