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