mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 16:45:06 -05:00
9593e2a92b
The Visual Studio 2017 image has Visual Studio 2015 and 2017 installed. Closes https://github.com/curl/curl/pull/3606
77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
version: 7.50.0.{build}
|
|
|
|
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015"
|
|
PRJ_GEN: "Visual Studio 9 2008"
|
|
PRJ_CFG: Release
|
|
OPENSSL: OFF
|
|
WINSSL: ON
|
|
HTTP_ONLY: OFF
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
|
|
PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
PRJ_CFG: Release
|
|
OPENSSL: OFF
|
|
WINSSL: ON
|
|
HTTP_ONLY: OFF
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
|
|
PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
PRJ_CFG: Release
|
|
OPENSSL: ON
|
|
WINSSL: OFF
|
|
HTTP_ONLY: OFF
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015"
|
|
PRJ_GEN: "Visual Studio 10 2010 Win64"
|
|
PRJ_CFG: Debug
|
|
OPENSSL: OFF
|
|
WINSSL: OFF
|
|
HTTP_ONLY: OFF
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
|
|
PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
PRJ_CFG: Debug
|
|
OPENSSL: OFF
|
|
WINSSL: OFF
|
|
HTTP_ONLY: OFF
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
|
|
PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
PRJ_CFG: Debug
|
|
OPENSSL: OFF
|
|
WINSSL: OFF
|
|
HTTP_ONLY: ON
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
|
|
build_script:
|
|
- cmake .
|
|
-G"%PRJ_GEN%"
|
|
-DCMAKE_USE_OPENSSL=%OPENSSL%
|
|
-DCMAKE_USE_WINSSL=%WINSSL%
|
|
-DHTTP_ONLY=%HTTP_ONLY%
|
|
-DBUILD_SHARED_LIBS=%SHARED%
|
|
-DBUILD_TESTING=%TESTING%
|
|
-DCURL_WERROR=ON
|
|
-DENABLE_DEBUG=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 !1139" )
|
|
|
|
# whitelist branches to avoid testing feature branches twice (as branch and as pull request)
|
|
branches:
|
|
only:
|
|
- master
|