blob: 49f17ad27fd2976e618c9468adda165f9d04d606 [file] [log] [blame]
version: '{branch}.{build}'
configuration: RelWithDebInfo
environment:
CMAKE_GENERATOR: Visual Studio 12
install:
- cinst -y swig
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
before_build:
- mkdir BLD
- cd BLD
- cmake -G "%CMAKE_GENERATOR%" -DBUILD_PERL=no %QPID_PROTON_CMAKE_ARGS% ..
- cd ..
build:
project: BLD/Proton.sln
parallel: true
verbosity: normal
test_script:
- cd BLD
- cmake --build . --target install --config %CONFIGURATION%
- ctest -V -C %CONFIGURATION% %QPID_PROTON_CTEST_ARGS%
- cd ..