]> git.proxmox.com Git - libgit2.git/blob - appveyor.yml
Merge pull request #2805 from ethomson/msvc
[libgit2.git] / appveyor.yml
1 version: '{build}'
2 branches:
3 only:
4 - master
5 build_script:
6 - ps: >-
7 choco install cmake
8
9 choco install python2
10
11 mkdir build
12
13 cd build
14
15 cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D STDCALL=ON .. -G"Visual Studio 11"
16
17 cmake --build . --config RelWithDebInfo
18 test_script:
19 - ps: ctest -V .