forked from benvautrin/pmuc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (21 loc) · 717 Bytes
/
appveyor.yml
File metadata and controls
27 lines (21 loc) · 717 Bytes
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
version: "1.2.{build}"
image:
- Visual Studio 2017
environment:
BOOST_ROOT: C:\Libraries\boost_1_69_0
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
CMAKE_BUILD_TYPE: "Release"
install:
- cmd: git submodule update --init --recursive
build_script:
- cmd: echo "Generator='%CMAKE_GENERATOR%', CMAKE_BUILD_TYPE='%CMAKE_BUILD_TYPE%'"
- cmd: echo "Platform='%Platform%'"
- cmd: cmake --version
- cmd: mkdir build
- cmd: cd build
- cmd: cmake -G "%CMAKE_GENERATOR%" "-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE%" ..
- cmd: cmake --build . --target pmuc --config %CMAKE_BUILD_TYPE%
test_script:
- ctest -C "%CMAKE_BUILD_TYPE%" --output-on-failure
artifacts:
- path: build\bin\$(CMAKE_BUILD_TYPE)