.cirrus.yml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. # Cirrus CI configuration
  25. # https://cirrus-ci.com/github/curl/curl
  26. freebsd_task:
  27. name: FreeBSD
  28. matrix:
  29. - name: FreeBSD 13.1
  30. freebsd_instance:
  31. image_family: freebsd-13-1
  32. - name: FreeBSD 12.3
  33. freebsd_instance:
  34. image_family: freebsd-12-3
  35. env:
  36. CIRRUS_CLONE_DEPTH: 10
  37. CRYPTOGRAPHY_DONT_BUILD_RUST: 1
  38. MAKE_FLAGS: -j 2
  39. pkginstall_script:
  40. - pkg update -f
  41. - pkg install -y autoconf automake libtool pkgconf brotli openldap24-client heimdal libpsl libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel
  42. - pkg delete -y curl
  43. - python -m ensurepip --default-pip
  44. - python -m pip install --upgrade pip
  45. - pip install "cryptography<3.2"
  46. - pip install "pyOpenSSL<20.0"
  47. - pip install "impacket"
  48. configure_script:
  49. - autoreconf -fi
  50. # Building with the address sanitizer is causing unexplainable test issues due to timeouts
  51. #- case `uname -r` in
  52. # 12.2*)
  53. # export CC=clang;
  54. # export CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
  55. # export CXXFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
  56. # export LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" ;;
  57. # esac
  58. - ./configure --prefix="${HOME}"/install --enable-debug --with-openssl --with-libssh2 --with-brotli --with-gssapi --with-libidn2 --enable-manual --enable-ldap --enable-ldaps --with-librtmp --with-libpsl --with-nghttp2 || { tail -300 config.log; false; }
  59. compile_script:
  60. - make V=1 && make V=1 examples && cd tests && make V=1
  61. test_script:
  62. # blackhole?
  63. - sysctl net.inet.tcp.blackhole
  64. # make sure we don't run blackhole != 0
  65. - sudo sysctl net.inet.tcp.blackhole=0
  66. # Some tests won't run if run as root so run them as another user.
  67. # Make directories world writable so the test step can write wherever it needs.
  68. - find . -type d -exec chmod 777 {} \;
  69. # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
  70. # therefore the SFTP and SCP tests are disabled right away from the beginning.
  71. - sudo -u nobody make V=1 TFLAGS="-n !SFTP !SCP" test-ci
  72. install_script:
  73. - make V=1 install
  74. windows_task:
  75. name: Windows
  76. timeout_in: 120m
  77. windows_container:
  78. image: ${container_img}
  79. matrix:
  80. - name: Windows 32-bit shared/release Schannel/SSPI/WinIDN/libssh2
  81. env:
  82. container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
  83. container_cmd: C:\msys64\usr\bin\sh
  84. prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-i686-libssh2 mingw-w64-i686-python-pip mingw-w64-i686-python-wheel mingw-w64-i686-python-pyopenssl && python3 -m pip install --prefer-binary impacket
  85. configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
  86. tests: "~571"
  87. - name: Windows 32-bit static/release Schannel/SSPI/WinIDN/libssh2
  88. env:
  89. container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
  90. container_cmd: C:\msys64\usr\bin\sh
  91. prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-i686-libssh2 mingw-w64-i686-python-pip mingw-w64-i686-python-wheel mingw-w64-i686-python-pyopenssl && python3 -m pip install --prefer-binary impacket
  92. configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2 --disable-shared --enable-static --enable-websockets
  93. tests: "~571"
  94. curl_LDFLAGS: -all-static
  95. PKG_CONFIG: pkg-config --static
  96. - name: Windows 64-bit shared/release Schannel/SSPI/WinIDN/libssh2
  97. env:
  98. container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
  99. container_cmd: C:\msys64\usr\bin\sh
  100. prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-x86_64-libssh2 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-wheel mingw-w64-x86_64-python-pyopenssl && python3 -m pip install --prefer-binary impacket
  101. configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2 --enable-websockets
  102. tests: "~571"
  103. - name: Windows 64-bit static/release Schannel/SSPI/WinIDN/libssh2
  104. env:
  105. container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
  106. container_cmd: C:\msys64\usr\bin\sh
  107. prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-x86_64-libssh2 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-wheel mingw-w64-x86_64-python-pyopenssl && python3 -m pip install --prefer-binary impacket
  108. configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2 --disable-shared --enable-static --enable-websockets
  109. tests: "~571"
  110. curl_LDFLAGS: -all-static
  111. PKG_CONFIG: pkg-config --static
  112. env:
  113. CIRRUS_CLONE_DEPTH: 10
  114. MSYS2_PATH_TYPE: inherit
  115. MAKEFLAGS: -j 2
  116. prepare_script: |
  117. %container_cmd% -l -c "cd $(echo '%cd%') && %prepare%"
  118. configure_script: |
  119. %container_cmd% -l -c "cd $(echo '%cd%') && autoreconf -fi && ./configure %configure%"
  120. compile_script: |
  121. %container_cmd% -l -c "cd $(echo '%cd%') && make V=1 && make V=1 examples && cd tests && make V=1"
  122. install_script: |
  123. %container_cmd% -l -c "cd $(echo '%cd%') && make V=1 install && PATH=/usr/bin:/bin find . -type f -path '*/.libs/*.exe' -print -execdir mv -t .. {} \;"
  124. test_script: |
  125. %container_cmd% -l -c "cd $(echo '%cd%') && make V=1 TFLAGS='!IDN !SCP ~612 ~1056 %tests%' test-ci"