-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
51 lines (42 loc) · 1.27 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
# Copyright Rein Halbersma 2010-2023.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GENERATOR_NAME: "Visual Studio 16 2019"
platform: x86
PLATFORM_NAME: "Win32"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GENERATOR_NAME: "Visual Studio 16 2019"
platform: x64
PLATFORM_NAME: "x64"
configuration:
- Debug
- Release
shallow_clone: true
build:
verbosity: detailed
cache:
- c:\tools\vcpkg\installed\
install:
- vcpkg install --triplet %platform%-windows
boost
before_build:
- cd %APPVEYOR_BUILD_FOLDER%
- cd ..
- git clone https://github.com/rhalbersma/bit_set.git
- git clone https://github.com/rhalbersma/tabula.git
- git clone https://github.com/rhalbersma/xstd.git
- cd %APPVEYOR_BUILD_FOLDER%
- mkdir build
- cd build
- cmake --version
- cmake .. -G "%GENERATOR_NAME%" -A %PLATFORM_NAME%
"-DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake"
build_script:
- cmake --build . --config %configuration% -v
test_script:
- ctest -E "search|traversal"