mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-05 07:16:46 +00:00
Add 64 bit and always build with default calling conventions, to avoid trying to build with stdcall on amd64.
26 lines
420 B
YAML
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 .
|