appveyor.sh 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. #!/usr/bin/env bash
  2. #***************************************************************************
  3. # _ _ ____ _
  4. # Project ___| | | | _ \| |
  5. # / __| | | | |_) | |
  6. # | (__| |_| | _ <| |___
  7. # \___|\___/|_| \_\_____|
  8. #
  9. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  10. #
  11. # This software is licensed as described in the file COPYING, which
  12. # you should have received as part of this distribution. The terms
  13. # are also available at https://curl.se/docs/copyright.html.
  14. #
  15. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. # copies of the Software, and permit persons to whom the Software is
  17. # furnished to do so, under the terms of the COPYING file.
  18. #
  19. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. # KIND, either express or implied.
  21. #
  22. # SPDX-License-Identifier: curl
  23. #
  24. ###########################################################################
  25. # shellcheck disable=SC3040,SC2039
  26. set -eux; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
  27. # build
  28. if [ "${APPVEYOR_BUILD_WORKER_IMAGE}" = 'Visual Studio 2022' ]; then
  29. openssl_root_win='C:/OpenSSL-v32-Win64'
  30. else
  31. openssl_root_win='C:/OpenSSL-v111-Win64'
  32. fi
  33. openssl_root="$(cygpath "${openssl_root_win}")"
  34. if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
  35. options=''
  36. [[ "${TARGET:-}" = *'ARM64'* ]] && SKIP_RUN='ARM64 architecture'
  37. [ "${OPENSSL}" = 'ON' ] && options+=" -DOPENSSL_ROOT_DIR=${openssl_root_win}"
  38. [ -n "${CURLDEBUG:-}" ] && options+=" -DENABLE_CURLDEBUG=${CURLDEBUG}"
  39. [ "${PRJ_CFG}" = 'Debug' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG='
  40. [ "${PRJ_CFG}" = 'Release' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE='
  41. [[ "${PRJ_GEN}" = *'Visual Studio'* ]] && options+=' -DCMAKE_VS_GLOBALS=TrackFileAccess=false'
  42. if [ "${PRJ_GEN}" = 'Visual Studio 9 2008' ]; then
  43. [ "${DEBUG}" = 'ON' ] && [ "${SHARED}" = 'ON' ] && SKIP_RUN='Crash on startup in ENABLE_DEBUG=ON shared builds'
  44. # Fails to run without this due to missing MSVCR90.dll / MSVCR90D.dll
  45. options+=' -DCURL_STATIC_CRT=ON'
  46. fi
  47. # shellcheck disable=SC2086
  48. cmake -B _bld "-G${PRJ_GEN}" ${TARGET:-} ${options} \
  49. "-DCURL_USE_OPENSSL=${OPENSSL}" \
  50. "-DCURL_USE_SCHANNEL=${SCHANNEL}" \
  51. "-DHTTP_ONLY=${HTTP_ONLY}" \
  52. "-DBUILD_SHARED_LIBS=${SHARED}" \
  53. "-DENABLE_WEBSOCKETS=${WEBSOCKETS:-}" \
  54. "-DCMAKE_UNITY_BUILD=${UNITY}" \
  55. '-DCURL_WERROR=ON' \
  56. "-DENABLE_DEBUG=${DEBUG}" \
  57. "-DENABLE_UNICODE=${ENABLE_UNICODE}" \
  58. '-DCMAKE_INSTALL_PREFIX=C:/curl' \
  59. "-DCMAKE_BUILD_TYPE=${PRJ_CFG}" \
  60. '-DCURL_USE_LIBPSL=OFF'
  61. # shellcheck disable=SC2086
  62. if ! cmake --build _bld --config "${PRJ_CFG}" --parallel 2 -- ${BUILD_OPT:-}; then
  63. if [ "${PRJ_GEN}" = 'Visual Studio 9 2008' ]; then
  64. find . -name BuildLog.htm -exec dos2unix '{}' +
  65. find . -name BuildLog.htm -exec cat '{}' +
  66. fi
  67. false
  68. fi
  69. if [ "${SHARED}" = 'ON' ]; then
  70. PATH="$PWD/_bld/lib:$PATH"
  71. fi
  72. if [ "${OPENSSL}" = 'ON' ]; then
  73. PATH="$PWD/_bld/lib:${openssl_root}:$PATH"
  74. fi
  75. curl='_bld/src/curl.exe'
  76. elif [ "${BUILD_SYSTEM}" = 'VisualStudioSolution' ]; then
  77. (
  78. cd projects
  79. ./generate.bat "${VC_VERSION}"
  80. msbuild.exe -maxcpucount "-property:Configuration=${PRJ_CFG}" "Windows/${VC_VERSION}/curl-all.sln"
  81. )
  82. curl="build/Win32/${VC_VERSION}/${PRJ_CFG}/curld.exe"
  83. elif [ "${BUILD_SYSTEM}" = 'winbuild_vs2015' ]; then
  84. ./buildconf.bat
  85. (
  86. cd winbuild
  87. cat << EOF > _make.bat
  88. call "C:/Program Files/Microsoft SDKs/Windows/v7.1/Bin/SetEnv.cmd" /x64
  89. call "C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/vcvarsall.bat" x86_amd64
  90. nmake -f Makefile.vc mode=dll VC=14 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEBUG=${DEBUG} ENABLE_UNICODE=${ENABLE_UNICODE}
  91. EOF
  92. ./_make.bat
  93. rm _make.bat
  94. )
  95. curl="builds/libcurl-vc14-x64-${PATHPART}-dll-ssl-dll-ipv6-sspi/bin/curl.exe"
  96. elif [ "${BUILD_SYSTEM}" = 'winbuild_vs2017' ]; then
  97. ./buildconf.bat
  98. (
  99. cd winbuild
  100. cat << EOF > _make.bat
  101. call "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build/vcvars64.bat"
  102. nmake -f Makefile.vc mode=dll VC=14.10 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEBUG=${DEBUG} ENABLE_UNICODE=${ENABLE_UNICODE} ENABLE_WEBSOCKETS=yes
  103. EOF
  104. ./_make.bat
  105. rm _make.bat
  106. )
  107. curl="builds/libcurl-vc14.10-x64-${PATHPART}-dll-ssl-dll-ipv6-sspi/bin/curl.exe"
  108. fi
  109. find . -name '*.exe' -o -name '*.dll'
  110. if [ -z "${SKIP_RUN:-}" ]; then
  111. "${curl}" --disable --version
  112. else
  113. echo "Skip running curl.exe. Reason: ${SKIP_RUN}"
  114. fi
  115. if false; then
  116. cat CMakeFiles/CMakeConfigureLog.yaml 2>/dev/null || true
  117. fi
  118. # build tests
  119. if [[ "${TFLAGS}" != 'skipall' ]] && \
  120. [ "${BUILD_SYSTEM}" = 'CMake' ]; then
  121. cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target testdeps
  122. fi
  123. # run tests
  124. if [[ "${TFLAGS}" != 'skipall' ]] && \
  125. [[ "${TFLAGS}" != 'skiprun' ]]; then
  126. if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then
  127. TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")"
  128. elif [ -x "$(cygpath 'C:/msys64/usr/bin/curl.exe')" ]; then
  129. TFLAGS+=" -ac $(cygpath 'C:/msys64/usr/bin/curl.exe')"
  130. fi
  131. TFLAGS+=' -j0'
  132. if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
  133. cmake --build _bld --config "${PRJ_CFG}" --target test-ci
  134. else
  135. (
  136. TFLAGS="-a -p !flaky -r -rm ${TFLAGS}"
  137. cd _bld/tests
  138. ./runtests.pl
  139. )
  140. fi
  141. fi