libgit2/appveyor.yml
Edward Thomson 1d67e8fd0c Windows CI: use 32 and 64 bit for AppVeyor builds
Add 64 bit and always build with default calling conventions, to
avoid trying to build with stdcall on amd64.
2015-01-21 11:53:16 -06:00

26 lines
420 B
YAML

version: '{build}'
branches:
only:
- master
environment:
matrix:
- GENERATOR: "Visual Studio 11"
ARCH: 32
- GENERATOR: "Visual Studio 11 Win64"
ARCH: 64
build_script:
- ps: >-
choco install cmake
choco install python2
mkdir build
cd build
cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$env:GENERATOR"
cmake --build . --config RelWithDebInfo
test_script:
- ps: ctest -V .