-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
40 lines (30 loc) · 896 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
35
36
37
38
39
40
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
version: "{build}"
os: Visual Studio 2015
clone_folder: C:\projects\ompl
clone_depth: 1
branches:
only:
- master
platform: x64
environment:
CTEST_OUTPUT_ON_FAILURE: 1
BOOST_ROOT: C:\Libraries\boost_1_59_0
BOOST_LIBRARYDIR: C:\Libraries\boost_1_59_0\lib64-msvc-14.0
configuration: Release
before_build:
- cmd: set
- cmd: mkdir build
- cmd: cd build
- cmd: cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=%configuration% -DOMPL_REGISTRATION=OFF -DOMPL_BUILD_DEMOS=OFF -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" ..
build:
project: C:\projects\ompl\build\ompl.sln
parallel: true
after_build:
- cmd: cmake --build . --target package --config %configuration%
# tests seem to hang
#test_script:
# - cmd: ctest -C %configuration%
artifacts:
- path: 'build\omplapp*.zip'