appveyor.sh 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 -u "${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. [ "${PRJ_CFG}" = 'Debug' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG='
  39. [ "${PRJ_CFG}" = 'Release' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE='
  40. [[ "${PRJ_GEN}" = *'Visual Studio'* ]] && options+=' -DCMAKE_VS_GLOBALS=TrackFileAccess=false'
  41. # Fails to run without this run due to missing MSVCR90.dll
  42. [ "${PRJ_GEN}" = 'Visual Studio 9 2008' ] && options+=' -DCURL_STATIC_CRT=ON'
  43. # shellcheck disable=SC2086
  44. cmake -B _bld "-G${PRJ_GEN}" ${TARGET:-} ${options} \
  45. "-DCURL_USE_OPENSSL=${OPENSSL}" \
  46. "-DCURL_USE_SCHANNEL=${SCHANNEL}" \
  47. "-DHTTP_ONLY=${HTTP_ONLY}" \
  48. "-DBUILD_SHARED_LIBS=${SHARED}" \
  49. "-DBUILD_TESTING=${TESTING}" \
  50. "-DENABLE_WEBSOCKETS=${WEBSOCKETS:-}" \
  51. "-DCMAKE_UNITY_BUILD=${UNITY}" \
  52. '-DCURL_WERROR=ON' \
  53. "-DENABLE_DEBUG=${DEBUG}" \
  54. "-DENABLE_UNICODE=${ENABLE_UNICODE}" \
  55. '-DCMAKE_INSTALL_PREFIX=C:/curl' \
  56. "-DCMAKE_BUILD_TYPE=${PRJ_CFG}"
  57. # shellcheck disable=SC2086
  58. cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --clean-first -- ${BUILD_OPT:-}
  59. if [ "${SHARED}" = 'ON' ]; then
  60. cp -f -p _bld/lib/*.dll _bld/src/
  61. fi
  62. if [ "${OPENSSL}" = 'ON' ]; then
  63. cp -f -p "${openssl_root}"/*.dll _bld/src/
  64. fi
  65. curl='_bld/src/curl.exe'
  66. elif [ "${BUILD_SYSTEM}" = 'VisualStudioSolution' ]; then
  67. (
  68. cd projects
  69. ./generate.bat "${VC_VERSION}"
  70. msbuild.exe -maxcpucount "-property:Configuration=${PRJ_CFG}" "Windows/${VC_VERSION}/curl-all.sln"
  71. )
  72. curl="build/Win32/${VC_VERSION}/${PRJ_CFG}/curld.exe"
  73. elif [ "${BUILD_SYSTEM}" = 'winbuild_vs2015' ]; then
  74. ./buildconf.bat
  75. (
  76. cd winbuild
  77. cat << EOF > _make.bat
  78. call "C:/Program Files/Microsoft SDKs/Windows/v7.1/Bin/SetEnv.cmd" /x64
  79. call "C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/vcvarsall.bat" x86_amd64
  80. nmake -f Makefile.vc mode=dll VC=14 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEBUG=${DEBUG} ENABLE_UNICODE=${ENABLE_UNICODE}
  81. EOF
  82. ./_make.bat
  83. rm _make.bat
  84. )
  85. curl="builds/libcurl-vc14-x64-${PATHPART}-dll-ssl-dll-ipv6-sspi/bin/curl.exe"
  86. elif [ "${BUILD_SYSTEM}" = 'winbuild_vs2017' ]; then
  87. ./buildconf.bat
  88. (
  89. cd winbuild
  90. cat << EOF > _make.bat
  91. call "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build/vcvars64.bat"
  92. 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
  93. EOF
  94. ./_make.bat
  95. rm _make.bat
  96. )
  97. curl="builds/libcurl-vc14.10-x64-${PATHPART}-dll-ssl-dll-ipv6-sspi/bin/curl.exe"
  98. elif [ "${BUILD_SYSTEM}" = 'autotools' ]; then
  99. autoreconf -fi
  100. (
  101. mkdir _bld
  102. cd _bld
  103. # shellcheck disable=SC2086
  104. ../configure ${CONFIG_ARGS:-}
  105. make -j2 V=1
  106. make -j2 V=1 examples
  107. cd tests
  108. make -j2 V=1
  109. )
  110. curl='_bld/src/curl.exe'
  111. fi
  112. find . -name '*.exe' -o -name '*.dll'
  113. if [ -z "${SKIP_RUN:-}" ]; then
  114. "${curl}" --version
  115. else
  116. echo "Skip running curl.exe. Reason: ${SKIP_RUN}"
  117. fi
  118. if false; then
  119. for log in CMakeFiles/CMakeConfigureLog.yaml CMakeFiles/CMakeOutput.log CMakeFiles/CMakeError.log; do
  120. [ -r "_bld/${log}" ] && cat "_bld/${log}"
  121. done
  122. fi
  123. # test
  124. if [ "${TESTING}" = 'ON' ]; then
  125. export TFLAGS=''
  126. if [ -x "$(cygpath -u "${WINDIR}/System32/curl.exe")" ]; then
  127. TFLAGS+=" -ac $(cygpath -u "${WINDIR}/System32/curl.exe")"
  128. elif [ -x "$(cygpath -u "C:/msys64/usr/bin/curl.exe")" ]; then
  129. TFLAGS+=" -ac $(cygpath -u "C:/msys64/usr/bin/curl.exe")"
  130. fi
  131. TFLAGS+=" ${DISABLED_TESTS:-}"
  132. if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
  133. cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target testdeps
  134. ls _bld/lib/*.dll >/dev/null 2>&1 && cp -f -p _bld/lib/*.dll _bld/tests/libtest/
  135. cmake --build _bld --config "${PRJ_CFG}" --target test-ci
  136. elif [ "${BUILD_SYSTEM}" = 'autotools' ]; then
  137. make -C _bld -j2 V=1 test-ci
  138. else
  139. (
  140. TFLAGS="-a -p !flaky -r -rm ${TFLAGS}"
  141. cd _bld/tests
  142. ./runtests.pl
  143. )
  144. fi
  145. fi