mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 19:45:04 -05:00
8a42b769a7
It almost always results in "starttransfer vs total: 0.000001 0.000000". I cannot reproduce this locally, so disable it for now. Closes https://github.com/curl/curl/pull/3100
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
version: 7.50.0.{build}
|
|
|
|
environment:
|
|
matrix:
|
|
- PRJ_GEN: "Visual Studio 11 2012 Win64"
|
|
BDIR: msvc2012
|
|
PRJ_CFG: Release
|
|
OPENSSL: ON
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- PRJ_GEN: "Visual Studio 12 2013 Win64"
|
|
BDIR: msvc2013
|
|
PRJ_CFG: Release
|
|
OPENSSL: ON
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
BDIR: msvc2015
|
|
PRJ_CFG: Release
|
|
OPENSSL: ON
|
|
TESTING: OFF
|
|
SHARED: ON
|
|
- PRJ_GEN: "Visual Studio 11 2012 Win64"
|
|
BDIR: msvc2012
|
|
PRJ_CFG: Release
|
|
OPENSSL: OFF
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
- PRJ_GEN: "Visual Studio 12 2013 Win64"
|
|
BDIR: msvc2013
|
|
PRJ_CFG: Release
|
|
OPENSSL: OFF
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
- PRJ_GEN: "Visual Studio 14 2015 Win64"
|
|
BDIR: msvc2015
|
|
PRJ_CFG: Release
|
|
OPENSSL: OFF
|
|
TESTING: ON
|
|
SHARED: OFF
|
|
- PRJ_GEN: "Visual Studio 14 2015"
|
|
BDIR: msvc2015
|
|
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
|