-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
50 lines (39 loc) · 1.41 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
46
47
48
49
50
# AppVeyor file
# https://www.appveyor.com/docs/appveyor-yml
version: "{build}"
os: Visual Studio 2017
clone_folder: C:\projects\ompl
shallow_clone: true
platform: x64
environment:
CTEST_OUTPUT_ON_FAILURE: 1
CMAKE_TOOLCHAIN_FILE: -DCMAKE_TOOLCHAIN_FILE="C:\tools\vcpkg\scripts\buildsystems\vcpkg.cmake"
CMAKE_GENERATOR: -G"Visual Studio 15 2017 Win64"
VCPKG_ARCH: x64-windows
cache:
- C:\tools\vcpkg\installed -> .appveyor.yml
configuration: Release
before_build:
- cmd: vcpkg install boost-disjoint-sets:%VCPKG_ARCH%
- cmd: vcpkg install boost-dynamic-bitset:%VCPKG_ARCH%
- cmd: vcpkg install boost-filesystem:%VCPKG_ARCH%
- cmd: vcpkg install boost-graph:%VCPKG_ARCH%
- cmd: vcpkg install boost-odeint:%VCPKG_ARCH%
- cmd: vcpkg install boost-program-options:%VCPKG_ARCH%
- cmd: vcpkg install boost-serialization:%VCPKG_ARCH%
- cmd: vcpkg install boost-system:%VCPKG_ARCH%
- cmd: vcpkg install boost-test:%VCPKG_ARCH%
- cmd: vcpkg install boost-ublas:%VCPKG_ARCH%
- cmd: vcpkg install eigen3:%VCPKG_ARCH%
- cmd: mkdir build
- cmd: cd build
- cmd: cmake %CMAKE_GENERATOR% -DCMAKE_BUILD_TYPE=%configuration% %CMAKE_TOOLCHAIN_FILE% -DOMPL_REGISTRATION=OFF ..
build:
project: C:\projects\ompl\build\ompl.sln
parallel: true
after_build:
- cmd: cmake --build . --config %configuration% --target package
test_script:
- cmd: ctest -C %configuration%
artifacts:
- path: 'build\ompl*.zip'