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 @@ -2,7 +2,33 @@ name: Tests
2
2
on : [push, pull_request]
3
3
4
4
jobs :
5
- test :
5
+ windows_test :
6
+ name : Windows tests
7
+ runs-on : windows-latest
8
+ steps :
9
+ - name : Checkout
10
+ uses : actions/checkout@v1
11
+ with :
12
+ fetch-depth : 1
13
+ - name : Setup
14
+ uses : nuget/setup-nuget@v1
15
+ run : |
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
31
+ ubuntu_test :
6
32
name : Ubuntu tests
7
33
runs-on : ubuntu-latest
8
34
steps :
You can’t perform that action at this time.
0 commit comments