]> git.proxmox.com Git - libgit2.git/blob - appveyor.yml
Merge pull request #2832 from ethomson/appveyor_badge
[libgit2.git] / appveyor.yml
1 version: '{build}'
2 branches:
3 only:
4 - master
5 environment:
6 matrix:
7 - GENERATOR: "Visual Studio 11"
8 ARCH: 32
9 - GENERATOR: "Visual Studio 11 Win64"
10 ARCH: 64
11 build_script:
12 - ps: >-
13 choco install cmake
14
15 choco install python2
16
17 mkdir build
18
19 cd build
20
21 cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$env:GENERATOR"
22
23 cmake --build . --config RelWithDebInfo
24 test_script:
25 - ps: ctest -V .