aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 756e5cb637e5be80f479e6195cbe149729ef2578 (plain)
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
# Configuration for continuous integration service at appveyor.com

shallow_clone: true

# Operating system (build VM template)
os: Visual Studio 2015

# scripts that are called at very beginning, before repo cloning
init:

# clone directory
clone_folder: c:\projects\gflags

matrix:
  fast_finish: true

platform:
  - Win32

configuration:
  - Debug
  - Release

install:
  # show all available env vars
  - set
  - echo cmake on AppVeyor, %configuration%-%platform%
  - cmake -version
  - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"

build_script:
  - cd c:\projects\gflags
  - mkdir out && cd out
  - cmake -G "Visual Studio 14 2015"
    -D CMAKE_BUILD_TYPE=%configuration%
    -D GFLAGS_BUILD_TESTING=ON
    -D GFLAGS_BUILD_SHARED_LIBS=ON
    -D GFLAGS_BUILD_STATIC_LIBS=ON
    ..
  - cmake --build . --config %configuration%

test_script:
  - ctest -C %configuration%