forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
33 lines (26 loc) · 861 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
version: '{build}'
shallow_clone: true
platform: x64
environment:
MSBUILD_FLAGS:
#MSBUILD_FLAGS: /verbosity:minimal /maxcpucount
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
matrix:
fast_finish: true
before_build:
- git config --global user.email "[email protected]"
- git config --global user.name "CI"
- set PATH=C:\Python36-x64;%PATH%
- bash -c "which python"
- bash -c "python -V"
- bash -c "python -m pip install virtualenv wheel"
- cmake --version
- cmake -H. -Bbuild -G "%CMAKE_GENERATOR%"
build_script:
- cmake --build build --config Release --target ALL_BUILD -- %MSBUILD_FLAGS%
test_script:
- cmake --build build --config Release --target RUN_TESTS