2020-03-23 09:44:29 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2021-03-27 07:52:25 -04:00
|
|
|
# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 09:44:29 -04:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 08:02:01 -05:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 09:44:29 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2019-02-09 04:04:39 -05:00
|
|
|
# Cirrus CI configuration
|
|
|
|
# https://cirrus-ci.com/github/curl/curl
|
|
|
|
|
2021-05-15 14:54:57 -04:00
|
|
|
freebsd_task:
|
2019-02-09 04:04:39 -05:00
|
|
|
name: FreeBSD
|
2021-05-15 14:54:57 -04:00
|
|
|
|
|
|
|
matrix:
|
2020-02-03 06:27:30 -05:00
|
|
|
# A stable 13.0 image likely won't be available before early 2021
|
2020-06-29 11:04:59 -04:00
|
|
|
# image_family: freebsd-13-0-snap
|
2021-05-15 14:54:57 -04:00
|
|
|
- name: FreeBSD 12.2
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-12-2
|
|
|
|
- name: FreeBSD 11.4
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-11-4
|
2019-02-09 04:04:39 -05:00
|
|
|
|
|
|
|
env:
|
2019-10-09 04:55:06 -04:00
|
|
|
CIRRUS_CLONE_DEPTH: 10
|
2019-02-09 04:04:39 -05:00
|
|
|
MAKE_FLAGS: -j 2
|
|
|
|
|
|
|
|
pkginstall_script:
|
2020-03-15 08:38:41 -04:00
|
|
|
- pkg update -f
|
2021-06-01 10:24:00 -04:00
|
|
|
- pkg install -y autoconf automake libtool pkgconf brotli openldap-client heimdal libpsl libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel
|
2020-03-17 05:36:25 -04:00
|
|
|
- case `python -V` in
|
|
|
|
Python?3.7*) pkg install -y py37-impacket ;;
|
|
|
|
Python?2.7*) pkg install -y py27-impacket ;;
|
|
|
|
esac
|
2019-02-09 04:04:39 -05:00
|
|
|
- pkg delete -y curl
|
|
|
|
configure_script:
|
|
|
|
- ./buildconf
|
2019-12-09 05:53:54 -05:00
|
|
|
- case `uname -r` in
|
2020-03-19 09:33:53 -04:00
|
|
|
12.1*)
|
2019-12-09 05:53:54 -05:00
|
|
|
export CC=clang;
|
2020-02-03 06:27:30 -05:00
|
|
|
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";
|
2019-12-09 05:53:54 -05:00
|
|
|
export LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" ;;
|
|
|
|
esac
|
2021-06-01 10:24:00 -04:00
|
|
|
- ./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; }
|
2019-02-09 04:04:39 -05:00
|
|
|
compile_script:
|
2021-05-15 14:54:57 -04:00
|
|
|
- make V=1 && cd tests && make V=1
|
2019-02-09 04:04:39 -05:00
|
|
|
test_script:
|
2019-10-09 03:20:29 -04:00
|
|
|
# blackhole?
|
|
|
|
- sysctl net.inet.tcp.blackhole
|
|
|
|
# make sure we don't run blackhole != 0
|
|
|
|
- sudo sysctl net.inet.tcp.blackhole=0
|
2019-02-09 04:04:39 -05:00
|
|
|
# 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 {} \;
|
2020-11-20 02:20:04 -05:00
|
|
|
# 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 -a -p !flaky !SFTP !SCP" test-nonflaky
|
2019-02-09 04:04:39 -05:00
|
|
|
install_script:
|
|
|
|
- make V=1 install
|
2021-05-15 14:54:57 -04:00
|
|
|
|
|
|
|
windows_task:
|
|
|
|
name: Windows
|
|
|
|
timeout_in: 90m
|
|
|
|
windows_container:
|
|
|
|
image: ${container_img}
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
- name: Windows 32-bit shared/release Schannel/SSPI/WinIDN/libssh2
|
|
|
|
env:
|
|
|
|
container_img: 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
|
|
|
|
configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
|
|
|
|
tests: ~165 ~310 ~571 ~612 ~1056 ~1299 ~1448 ~2034 ~2037 ~2041 ~2046 ~2047 ~3000 ~3001 !SCP
|
|
|
|
- name: Windows 32-bit static/release Schannel/SSPI/WinIDN/libssh2
|
|
|
|
env:
|
|
|
|
container_img: 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
|
|
|
|
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
|
|
|
|
tests: ~165 ~310 ~571 ~612 ~1056 ~1299 ~1448 ~2034 ~2037 ~2041 ~2046 ~2047 ~3000 ~3001 !SCP
|
|
|
|
curl_LDFLAGS: -all-static
|
|
|
|
PKG_CONFIG: pkg-config --static
|
|
|
|
- name: Windows 64-bit shared/release Schannel/SSPI/WinIDN/libssh2
|
|
|
|
env:
|
|
|
|
container_img: 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
|
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
|
|
|
|
tests: ~165 ~310 ~571 ~612 ~1056 ~1299 ~1448 ~2034 ~2037 ~2041 ~2046 ~2047 ~3000 ~3001 !SCP
|
|
|
|
- name: Windows 64-bit static/release Schannel/SSPI/WinIDN/libssh2
|
|
|
|
env:
|
|
|
|
container_img: 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
|
|
|
|
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
|
|
|
|
tests: ~165 ~310 ~571 ~612 ~1056 ~1299 ~1448 ~2034 ~2037 ~2041 ~2046 ~2047 ~3000 ~3001 !SCP
|
|
|
|
curl_LDFLAGS: -all-static
|
|
|
|
PKG_CONFIG: pkg-config --static
|
|
|
|
|
|
|
|
env:
|
|
|
|
CIRRUS_CLONE_DEPTH: 10
|
|
|
|
MSYS2_PATH_TYPE: inherit
|
|
|
|
|
|
|
|
prepare_script: |
|
|
|
|
%container_cmd% -l -c "cd $(echo '%cd%') && %prepare%"
|
|
|
|
configure_script: |
|
|
|
|
%container_cmd% -l -c "cd $(echo '%cd%') && ./buildconf && ./configure %configure%"
|
|
|
|
compile_script: |
|
|
|
|
%container_cmd% -l -c "cd $(echo '%cd%') && make V=1 && cd tests && make V=1"
|
|
|
|
install_script: |
|
|
|
|
%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 .. {} \;"
|
|
|
|
test_script: |
|
|
|
|
%container_cmd% -l -c "cd $(echo '%cd%') && make V=1 TFLAGS='-r -rm %tests%' test-nonflaky"
|