forked from boostorg/hof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (27 loc) · 800 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
environment:
matrix:
- GENERATOR: "Visual Studio 14 2015 Win64"
CONFIG: Debug
VS_VERSION: "14.0"
- GENERATOR: "Visual Studio 14 2015 Win64"
CONFIG: Release
VS_VERSION: "14.0"
matrix:
fast_finish: true
before_build:
- git submodule update --init --recursive
install:
- ps: cmake -P .cmake-download-script
- ps: gem install coveralls-lcov
build_script:
- cmd: set PATH=C:\Program Files (x86)\CMake\bin;%PATH%
- cmd: call "C:/Program Files (x86)/Microsoft Visual Studio %VS_VERSION%/Common7/Tools/vsvars32.bat"
- cmd: cmake --version
- cmd: cd tests
- cmd: mkdir build
- cmd: cd build
- cmd: cmake .. -Wdev --warn-uninitialized -G"%GENERATOR%"
- cmd: cmake --build . --target check
# test_script:
# - cmd: ctest -C Debug --output-on-failure
# - cmd: cd ../../