2021-06-29 22:45:13 +08:00
#***************************************************************************
# _ _ ____ _
# Project ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
2023-01-02 20:51:48 +08:00
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
2021-06-29 22:45:13 +08:00
#
# 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.
#
2021-06-11 13:50:28 +08:00
# SPDX-License-Identifier: curl
2022-05-17 17:16:50 +08:00
#
2021-06-29 22:45:13 +08:00
###########################################################################
2021-11-16 13:00:26 +08:00
# View these jobs in the browser: https://app.circleci.com/pipelines/github/curl/curl
2024-01-05 02:32:04 +08:00
#
# The macOS builds use M1 (ARM) machines for platform diversity.
# See https://circleci.com/docs/configuration-reference/#macos-execution-environment
2021-11-16 13:00:26 +08:00
2021-06-11 13:50:28 +08:00
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version : 2.1
commands :
configure :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-werror --with-openssl || { tail -1000 config.log; false; }
2021-06-11 13:50:28 +08:00
2022-01-31 19:52:29 +08:00
configure-openssl-no-verbose :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --disable-verbose --enable-werror --with-openssl || { tail -1000 config.log; false; }
2022-01-31 19:52:29 +08:00
configure-no-proxy :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --disable-proxy --enable-werror --with-openssl || { tail -1000 config.log; false; }
2022-01-31 19:52:29 +08:00
2023-08-31 08:58:27 +08:00
configure-macos-normal :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --without-ssl CFLAGS='-Wno-vla -mmacosx-version-min=10.9' CPPFLAGS="-I$(brew --prefix libpsl)/include" LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-debug :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --without-ssl --enable-debug CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-libssh2 :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --without-ssl --with-libssh2=/opt/homebrew/opt/libssh2 --enable-debug CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-libssh-c-ares :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --with-openssl --with-libssh --enable-ares --enable-debug PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-libssh :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --with-openssl --with-libssh --enable-debug PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-c-ares :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --without-ssl --enable-ares --enable-debug CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-http-only :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-maintainer-mode --disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-mqtt --disable-pop3 --disable-rtsp --disable-smb --disable-smtp --disable-telnet --disable-tftp --disable-unix-sockets --disable-shared --without-brotli --without-gssapi --without-libidn2 --without-libpsl --without-librtmp --without-libssh2 --without-nghttp2 --without-ssl --without-zlib --enable-debug CFLAGS='-Wno-vla -mmacosx-version-min=10.15' || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-securetransport-http2 :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --with-secure-transport CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.8' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-openssl-http2 :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --with-openssl --enable-debug PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-libressl-http2 :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --with-openssl --enable-debug PKG_CONFIG_PATH="$(brew --prefix libressl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-torture :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --disable-shared --disable-threaded-resolver --with-openssl --enable-debug PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
configure-macos-torture-ftp :
steps :
- run :
command : |
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-websockets --disable-shared --disable-threaded-resolver --with-openssl --enable-debug PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" CPPFLAGS="-I$(brew --prefix libpsl)/include" CFLAGS='-Wno-vla -mmacosx-version-min=10.9' LDFLAGS="-L$(brew --prefix libpsl)/lib -L$(brew --prefix icu4c)/lib" LIBS="-licuuc -licudata" || { tail -1000 config.log; false; }
2023-08-31 08:58:27 +08:00
2022-01-31 16:41:31 +08:00
install-cares :
steps :
- run :
command : |
sudo apt-get update && sudo apt-get install -y libc-ares-dev
2022-02-13 05:57:23 +08:00
install-libssh :
steps :
- run :
command : |
sudo apt-get update && sudo apt-get install -y libssh-dev
2022-01-31 19:52:29 +08:00
install-deps :
steps :
- run :
command : |
2024-01-08 23:49:21 +08:00
sudo apt-get update && sudo apt-get install -y libpsl-dev libbrotli-dev libzstd-dev zlib1g-dev python3-pip libpsl-dev
2023-04-17 03:42:38 +08:00
sudo python3 -m pip install impacket
2022-01-31 19:52:29 +08:00
2023-08-31 08:58:27 +08:00
install-deps-brew :
steps :
- run :
command : |
# Drop libressl as long as we're not trying to build it
2024-01-05 02:32:04 +08:00
echo libtool autoconf automake pkg-config nghttp2 libssh2 openssl libssh c-ares libpsl icu4c | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile
2023-08-31 08:58:27 +08:00
while [ $? -eq 0 ]; do for i in 1 2 3; do brew update && brew bundle install --no-lock --file /tmp/Brewfile && break 2 || { echo Error: wait to try again; sleep 10; } done; false Too many retries; done
sudo python3 -m pip install impacket
2022-02-13 05:57:23 +08:00
configure-libssh :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-werror --with-openssl --with-libssh || { tail -1000 config.log; false; }
2022-02-13 05:57:23 +08:00
2022-02-13 06:14:16 +08:00
install-wolfssl :
steps :
- run :
command : |
2024-05-13 22:45:30 +08:00
source .github/scripts/VERSIONS
echo "Installing wolfSSL $WOLFSSL_VER"
2023-02-13 16:04:51 +08:00
curl -LOsSf --retry 6 --retry-connrefused --max-time 999 https://github.com/wolfSSL/wolfssl/archive/v$WOLFSSL_VER-stable.tar.gz
tar -xzf v$WOLFSSL_VER-stable.tar.gz
cd wolfssl-$WOLFSSL_VER-stable
2022-02-13 06:14:16 +08:00
./autogen.sh
./configure --enable-tls13 --enable-all --enable-harden --prefix=$HOME/wssl
2022-09-12 06:04:32 +08:00
make install
2022-02-13 06:14:16 +08:00
install-wolfssh :
steps :
- run :
command : |
2024-05-13 22:45:30 +08:00
source .github/scripts/VERSIONS
echo "Installing wolfSSH $WOLFSSH_VER"
2023-02-13 16:04:51 +08:00
curl -LOsSf --retry 6 --retry-connrefused --max-time 999 https://github.com/wolfSSL/wolfssh/archive/v$WOLFSSH_VER-stable.tar.gz
tar -xzf v$WOLFSSH_VER-stable.tar.gz
cd wolfssh-$WOLFSSH_VER-stable
2022-02-13 06:14:16 +08:00
./autogen.sh
./configure --with-wolfssl=$HOME/wssl --prefix=$HOME/wssh --enable-scp --enable-sftp --disable-examples
2022-09-12 06:04:32 +08:00
make install
2022-02-13 06:14:16 +08:00
2022-01-31 16:41:31 +08:00
configure-cares :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-warnings --enable-werror --with-openssl --enable-ares || { tail -1000 config.log; false; }
2022-01-31 16:41:31 +08:00
2022-02-13 06:14:16 +08:00
configure-wolfssh :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
LDFLAGS="-Wl,-rpath,$HOME/wssh/lib" ./configure --enable-warnings --enable-werror --with-wolfssl=$HOME/wssl --with-wolfssh=$HOME/wssh || { tail -1000 config.log; false; }
2022-02-13 06:14:16 +08:00
2022-01-31 17:03:15 +08:00
configure-cares-debug :
steps :
- run :
command : |
2022-03-15 17:25:25 +08:00
autoreconf -fi
2024-04-25 03:07:53 +08:00
./configure --enable-debug --enable-werror --with-openssl --enable-ares || { tail -1000 config.log; false; }
2022-01-31 17:03:15 +08:00
2021-06-11 13:50:28 +08:00
build :
steps :
2023-06-24 03:51:41 +08:00
- run : make -j3 V=1
- run : make -j3 V=1 examples
2021-06-11 13:50:28 +08:00
2023-08-31 08:58:27 +08:00
build-macos :
steps :
2024-01-05 02:32:04 +08:00
- run : make -j5 V=1
- run : make -j5 V=1 examples
2023-08-31 08:58:27 +08:00
2021-06-11 13:50:28 +08:00
test :
steps :
2023-06-24 03:51:41 +08:00
- run : make -j3 V=1 test-ci
2021-06-11 13:50:28 +08:00
2023-08-31 08:58:27 +08:00
test-macos :
steps :
2024-01-05 02:32:04 +08:00
- run : make -j5 V=1 test-ci
2023-08-31 08:58:27 +08:00
test-torture :
steps :
- run : make -j5 V=1 test-ci TFLAGS="-n -t --shallow=25 !FTP"
test-torture-ftp :
steps :
2024-01-05 02:32:04 +08:00
# Test 250 takes too long, causing Circle CI to kill the job
- run : make -j5 V=1 test-ci TFLAGS="-n -t --shallow=20 FTP !250 !251"
2023-08-31 08:58:27 +08:00
2021-06-11 13:50:28 +08:00
executors :
ubuntu :
machine :
2024-02-16 08:04:40 +08:00
image : ubuntu-2004:2024.01.1
2021-06-11 13:50:28 +08:00
jobs :
basic :
executor : ubuntu
steps :
- checkout
2024-01-08 23:49:21 +08:00
- install-deps
2021-06-11 13:50:28 +08:00
- configure
- build
- test
2022-01-31 19:52:29 +08:00
no-verbose :
executor : ubuntu
steps :
- checkout
- install-deps
- configure-openssl-no-verbose
- build
2022-02-13 06:14:16 +08:00
wolfssh :
executor : ubuntu
steps :
- checkout
- install-deps
- install-wolfssl
- install-wolfssh
- configure-wolfssh
- build
2022-01-31 19:52:29 +08:00
no-proxy :
executor : ubuntu
steps :
- checkout
- install-deps
- configure-no-proxy
- build
- test
2022-01-31 16:41:31 +08:00
cares :
executor : ubuntu
steps :
- checkout
2024-01-08 23:49:21 +08:00
- install-deps
2022-01-31 16:41:31 +08:00
- install-cares
- configure-cares
- build
- test
2022-02-13 05:57:23 +08:00
libssh :
executor : ubuntu
steps :
- checkout
2024-01-08 23:49:21 +08:00
- install-deps
2022-02-13 05:57:23 +08:00
- install-libssh
- configure-libssh
- build
- test
2021-06-11 13:50:28 +08:00
arm :
machine :
2024-02-16 08:04:40 +08:00
image : ubuntu-2004:2024.01.1
2021-06-11 13:50:28 +08:00
resource_class : arm.medium
steps :
- checkout
2024-01-08 23:49:21 +08:00
- install-deps
2021-06-11 13:50:28 +08:00
- configure
- build
- test
2022-01-31 17:03:15 +08:00
arm-cares :
machine :
2024-02-16 08:04:40 +08:00
image : ubuntu-2004:2024.01.1
2022-01-31 17:03:15 +08:00
resource_class : arm.medium
steps :
- checkout
2024-01-08 23:49:21 +08:00
- install-deps
2022-01-31 17:03:15 +08:00
- install-cares
- configure-cares-debug
- build
- test
2024-01-05 02:32:04 +08:00
macos-arm-normal :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-normal
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-debug :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-debug
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-libssh2 :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-libssh2
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-libssh-c-ares :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-libssh-c-ares
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-libssh :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-libssh
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-c-ares :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-c-ares
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-http-only :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-http-only
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-http-securetransport-http2 :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-securetransport-http2
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-http-openssl-http2 :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-openssl-http2
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-http-libressl-http2 :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-libressl-http2
- build-macos
- test-macos
2024-01-05 02:32:04 +08:00
macos-arm-http-torture :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-torture
- build-macos
- test-torture
2024-01-05 02:32:04 +08:00
macos-arm-http-torture-ftp :
2023-08-31 08:58:27 +08:00
macos :
xcode : 15.0 .0
2024-01-05 02:32:04 +08:00
resource_class : macos.m1.medium.gen1
2023-08-31 08:58:27 +08:00
steps :
- checkout
- install-deps-brew
- configure-macos-torture-ftp
- build-macos
- test-torture-ftp
2021-06-11 13:50:28 +08:00
workflows :
x86-openssl :
jobs :
- basic
2022-01-31 16:41:31 +08:00
openssl-c-ares :
jobs :
- cares
2021-06-11 13:50:28 +08:00
2022-02-13 05:57:23 +08:00
openssl-libssh :
jobs :
- libssh
2022-01-31 19:52:29 +08:00
openssl-no-proxy :
jobs :
- no -proxy
openssl-no-verbose :
jobs :
- no -verbose
2022-02-13 06:14:16 +08:00
wolfssl-wolfssh :
jobs :
- wolfssh
2021-06-11 13:50:28 +08:00
arm-openssl :
jobs :
- arm
2022-01-31 17:03:15 +08:00
arm-openssl-c-ares :
jobs :
- arm-cares
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-normal :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-normal
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-debug :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-debug
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-libssh2 :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-libssh2
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-libssh-c-ares :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-libssh-c-ares
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-libssh :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-libssh
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-c-ares :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-c-ares
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-http-only :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-http-only
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-http-securetransport-http2 :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-http-securetransport-http2
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-http-openssl-http2 :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-http-openssl-http2
2023-08-31 08:58:27 +08:00
# There are problem linking with LibreSSL on the CI boxes that prevent this
# from working.
2024-01-05 02:32:04 +08:00
# macos-arm-http-libressl-http2:
2023-12-06 18:05:20 +08:00
# jobs:
2024-01-05 02:32:04 +08:00
# - macos-arm-http-libressl-http2
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-http-torture :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-http-torture
2023-08-31 08:58:27 +08:00
2024-01-05 02:32:04 +08:00
macos-arm-http-torture-ftp :
2023-08-31 08:58:27 +08:00
jobs :
2024-01-05 02:32:04 +08:00
- macos-arm-http-torture-ftp