chiark / gitweb /
strip
[nlopt.git] / appveyor.yml
1 version: 1.0.{build}
2 os: Visual Studio 2015
3 clone_folder: C:\projects\nlopt
4 test: off
5 configuration:
6   - Release
7 branches:
8   only:
9     - master
10 environment:
11   matrix:
12     - CMAKE_PLATFORM: "Visual Studio 14 2015"
13     - CMAKE_PLATFORM: "Visual Studio 14 2015 Win64"
14 install:
15   - cinstall: python
16   #- choco install swig
17 build_script:
18   - echo Running cmake...
19   - cd c:\projects\nlopt
20   - cmake -G "%CMAKE_PLATFORM%" -DCMAKE_INSTALL_PREFIX="C:\projects\nlopt\install" .
21   - cmake --build . --config %Configuration% --target install
22   - ctest -C %Configuration% --output-on-failure --timeout 100