123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- #***************************************************************************
- # _ _ ____ _
- # Project ___| | | | _ \| |
- # / __| | | | |_) | |
- # | (__| |_| | _ <| |___
- # \___|\___/|_| \_\_____|
- #
- # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
- #
- # This software is licensed as described in the file COPYING, which
- # you should have received as part of this distribution. The terms
- # are also available at https://curl.se/docs/copyright.html.
- #
- # You may opt to use, copy, modify, merge, publish, distribute and/or sell
- # copies of the Software, and permit persons to whom the Software is
- # furnished to do so, under the terms of the COPYING file.
- #
- # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- # KIND, either express or implied.
- #
- # SPDX-License-Identifier: curl
- #
- ###########################################################################
- # Cirrus CI configuration
- # https://cirrus-ci.com/github/curl/curl
- freebsd_task:
- name: FreeBSD
- matrix:
- - name: FreeBSD 13.1
- freebsd_instance:
- image_family: freebsd-13-1
- - name: FreeBSD 12.3
- freebsd_instance:
- image_family: freebsd-12-3
- env:
- CIRRUS_CLONE_DEPTH: 10
- CRYPTOGRAPHY_DONT_BUILD_RUST: 1
- MAKE_FLAGS: -j 2
- pkginstall_script:
- - pkg update -f
- - pkg install -y autoconf automake libtool pkgconf brotli openldap24-client heimdal libpsl libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel
- - pkg delete -y curl
- - python -m ensurepip --default-pip
- - python -m pip install --upgrade pip
- - pip install "cryptography<3.2"
- - pip install "pyOpenSSL<20.0"
- - pip install "impacket"
- configure_script:
- - autoreconf -fi
- # Building with the address sanitizer is causing unexplainable test issues due to timeouts
- #- case `uname -r` in
- # 12.2*)
- # export CC=clang;
- # export CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
- # export CXXFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
- # export LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" ;;
- # esac
- - ./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; }
- compile_script:
- - make V=1 && make V=1 examples && cd tests && make V=1
- test_script:
- # blackhole?
- - sysctl net.inet.tcp.blackhole
- # make sure we don't run blackhole != 0
- - sudo sysctl net.inet.tcp.blackhole=0
- # Some tests won't run if run as root so run them as another user.
- # Make directories world writable so the test step can write wherever it needs.
- - find . -type d -exec chmod 777 {} \;
- # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
- # therefore the SFTP and SCP tests are disabled right away from the beginning.
- - sudo -u nobody make V=1 TFLAGS="-n !SFTP !SCP" test-ci
- install_script:
- - make V=1 install
- windows_task:
- name: Windows
- timeout_in: 120m
- windows_container:
- image: ${container_img}
- matrix:
- - name: Windows 32-bit shared/release Schannel/SSPI/WinIDN/libssh2
- env:
- container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
- container_cmd: C:\msys64\usr\bin\sh
- 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
- configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
- tests: "~571"
- make_cmd: make V=1
- - name: Windows 32-bit static/release Schannel/SSPI/WinIDN/libssh2
- env:
- container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
- container_cmd: C:\msys64\usr\bin\sh
- 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
- 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
- tests: "~571"
- make_cmd: make LDFLAGS=-all-static V=1
- PKG_CONFIG: pkg-config --static
- - name: Windows 64-bit shared/release Schannel/SSPI/WinIDN/libssh2
- env:
- container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
- container_cmd: C:\msys64\usr\bin\sh
- 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
- 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
- tests: "~571"
- make_cmd: make V=1
- - name: Windows 64-bit static/release Schannel/SSPI/WinIDN/libssh2
- env:
- container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
- container_cmd: C:\msys64\usr\bin\sh
- 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
- 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
- tests: "~571"
- make_cmd: make LDFLAGS=-all-static V=1
- PKG_CONFIG: pkg-config --static
- env:
- CIRRUS_CLONE_DEPTH: 10
- MSYS2_PATH_TYPE: inherit
- MAKEFLAGS: -j 2
- prepare_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && %prepare%"
- configure_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && autoreconf -fi && ./configure %configure%"
- compile_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && %make_cmd% && %make_cmd% examples && cd tests && %make_cmd%"
- install_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && %make_cmd% install && PATH=/usr/bin:/bin find . -type f -path '*/.libs/*.exe' -print -execdir mv -t .. {} \;"
- test_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && %make_cmd% TFLAGS='!IDN !SCP ~612 ~1056 %tests%' test-ci"
- macos_task:
- name: macOS arm64 normal
- macos_instance:
- image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
- env:
- CIRRUS_CLONE_DEPTH: 10
- MAKE_FLAGS: -j 4
- CFLAGS: "-Wno-vla -mmacosx-version-min=10.9"
- pkginstall_script:
- - brew update
- - echo libtool autoconf automake pkg-config | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile
- - brew update && for i in 1 2 3; do brew bundle install --no-lock --file /tmp/Brewfile && break || sleep 1; done
- configure_script:
- - autoreconf -fi
- - ./configure --enable-warnings --enable-werror --without-ssl --enable-websockets
- compile_script:
- - make V=1 && make V=1 examples && cd tests && make V=1
- test_script:
- - sudo make V=1 test-ci
- install_script:
- - sudo make V=1 install
- macos_task:
- name: macOS arm64 debug
- macos_instance:
- image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
- env:
- CIRRUS_CLONE_DEPTH: 10
- MAKE_FLAGS: -j 4
- CFLAGS: "-Wno-vla -mmacosx-version-min=10.9"
- pkginstall_script:
- - brew update
- - echo libtool autoconf automake pkg-config nghttp2 | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile
- - brew update && for i in 1 2 3; do brew bundle install --no-lock --file /tmp/Brewfile && break || sleep 1; done
- configure_script:
- - autoreconf -fi
- - ./configure --enable-warnings --enable-werror --enable-debug --without-ssl --enable-websockets
- compile_script:
- - make V=1 && make V=1 examples && cd tests && make V=1
- test_script:
- - sudo make V=1 test-ci
- install_script:
- - sudo make V=1 install
|