File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : Tests
2
2
on : [push, pull_request]
3
-
4
3
jobs :
4
+ windows_test :
5
+ name : Windows testss
6
+ runs-on : windows-latest
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v1
10
+ with :
11
+ fetch-depth : 1
12
+ - name : Setup
13
+ uses : nuget/setup-nuget@v1
14
+ run : |
15
+ vcpkg install allegro5
16
+ mkdir deps
17
+ mkdir deps\include
18
+ mkdir deps\lib
19
+ nuget install AllegroDeps -Version 1.5.0 -OutputDirectory deps -ExcludeVersion
20
+ move deps\AllegroDeps\build\native\include\* deps\include -force
21
+ move deps\AllegroDeps\build\native\v140\win32\deps\lib\* deps\lib -force
22
+ shell : powershell
23
+ - name : Configure
24
+ run : |
25
+ cd build
26
+ cmake .. -G "Visual Studio 15 2017" -DWANT_ACODEC_DYNAMIC_LOAD=off -DFLAC_STATIC=on
27
+ - name : Build
28
+ run : |
29
+ cd build
30
+ cmake --build . --config Debug
5
31
osx_test :
6
32
name : OSX tests
7
33
runs-on : macos-latest
You can’t perform that action at this time.
0 commit comments