-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathappveyor.yml
More file actions
29 lines (25 loc) · 795 Bytes
/
appveyor.yml
File metadata and controls
29 lines (25 loc) · 795 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
28
29
version: '{build}'
branches:
only:
- master
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: "Visual Studio 15 2017"
ARCH: 32
BOOST: 1_65_1
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: "Visual Studio 15 2017 Win64"
ARCH: 64
BOOST: 1_65_1
clone_script:
- cmd: git clone --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
- cmd: cd %APPVEYOR_BUILD_FOLDER%
- cmd: git checkout -q %APPVEYOR_REPO_COMMIT%
- cmd: git submodule update --init
build_script:
- ps: |
mkdir build
cd build
cmake -D BUILD_CLAR=OFF -D BUILD_EXAMPLES=OFF -D USE_BOOST=ON -D BOOST_ROOT="C:\Libraries\boost_$env:BOOST" .. -G"$env:GENERATOR"
cmake --build . --config Debug