forked from cinder/Cinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
34 lines (26 loc) · 879 Bytes
/
.appveyor.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
#version: 1.0.{build}
build:
parallel: true
project: proj/vc2015/cinder.sln
platform:
- x64
- Win32
configuration:
- Debug
- Release
- Debug_ANGLE
- Release_ANGLE
image:
- Visual Studio 2015
install:
- git submodule update --init include/boost
clone_depth: 10
before_test:
- msbuild test\unit\vc2015\unit.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
# in the future we'll need to figure out how to tell what version (v140, v150) we are targeting from within AppVeyor
test_script:
# translate "Win32" to "x86" to get the appropriate folder
- set ARCH_FOLDER=%platform%
- if "%platform%" == "Win32" set ARCH_FOLDER=x86
- echo Binary resolving to test\unit\vc2015\build\v140\%configuration%\%ARCH_FOLDER%\CinderUnitTests.exe
- test\unit\vc2015\build\v140\%configuration%\%ARCH_FOLDER%\CinderUnitTests.exe