-
Notifications
You must be signed in to change notification settings - Fork 11
/
appveyor.yml
45 lines (45 loc) · 1.19 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
image:
- Visual Studio 2017
- Visual Studio 2019
platform:
- x64
- Win32
configuration:
- Debug
- Release
clone_folder: c:\projects\fea_flat_recurse
install:
- cmd: set PATH=%PATH%;%PYTHON%/Scripts/
- cmd: pip.exe install conan
- cmd: cd ..
- cmd: conan user
- cmd: conan --version
- cmd: conan remote add bincrafters https://api.bintray.com/conan/conan/conan-center
- cmd: conan profile new default --detect
- cmd: cd c:\projects\fea_flat_recurse
build:
project: c:\projects\fea_flat_recurse\build\fea_flat_recurse.sln
parallel: true
test_script:
- cmd: c:\projects\fea_flat_recurse\build\bin\fea_flat_recurse_tests.exe
for:
-
matrix:
only:
- platform: x64
before_build:
- cmd: conan profile update settings.arch="x86_64" default
- cmd: cd c:\projects\fea_flat_recurse
- cmd: mkdir build
- cmd: cd build
- cmd: cmake .. -A %PLATFORM% -DBUILD_TESTING=On
-
matrix:
only:
- platform: Win32
before_build:
- cmd: conan profile update settings.arch="x86" default
- cmd: cd c:\projects\fea_flat_recurse
- cmd: mkdir build
- cmd: cd build
- cmd: cmake .. -A %PLATFORM% -DBUILD_TESTING=On