1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-04 16:45:06 -05:00
curl/appveyor.yml
Marcel Raad aadf7b2293
AppVeyor: add remaining Visual Studio versions
This adds Visual Studio 9 and 10 builds.
There's no 64-bit VC9 compiler on AppVeyor, so use it as the Win32
build. Also, VC9 cannot be used for running the test suite.

Closes https://github.com/curl/curl/pull/3104
2018-10-07 15:28:49 +02:00

66 lines
1.7 KiB
YAML

version: 7.50.0.{build}
environment:
matrix:
- PRJ_GEN: "Visual Studio 9 2008"
PRJ_CFG: Release
OPENSSL: ON
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 11 2012 Win64"
PRJ_CFG: Release
OPENSSL: ON
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 12 2013 Win64"
PRJ_CFG: Release
OPENSSL: ON
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 14 2015 Win64"
PRJ_CFG: Release
OPENSSL: ON
TESTING: OFF
SHARED: ON
- PRJ_GEN: "Visual Studio 10 2010 Win64"
PRJ_CFG: Release
OPENSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 11 2012 Win64"
PRJ_CFG: Release
OPENSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 12 2013 Win64"
PRJ_CFG: Release
OPENSSL: OFF
TESTING: ON
SHARED: OFF
- PRJ_GEN: "Visual Studio 14 2015 Win64"
PRJ_CFG: Release
OPENSSL: OFF
TESTING: ON
SHARED: OFF
build_script:
- cmake .
-G"%PRJ_GEN%"
-DCMAKE_USE_OPENSSL=%OPENSSL%
-DBUILD_SHARED_LIBS=%SHARED%
-DBUILD_TESTING=%TESTING%
-DCURL_WERROR=ON
-DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=""
-DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=""
-DCMAKE_INSTALL_PREFIX="C:/CURL"
- cmake --build . --config %PRJ_CFG% --clean-first
test_script:
- if %TESTING%==ON (
C:\msys64\usr\bin\bash.exe -e -l -c "cd /c/projects/curl/tests && ./runtests.pl -a -p !flaky !500 !1139" )
# whitelist branches to avoid testing feature branches twice (as branch and as pull request)
branches:
only:
- master