Skip to content

Commit

Permalink
zuul: add an mbedtls3 CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Aug 9, 2021
1 parent 27625af commit 9dedf57
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/zuul/before_script.sh
Expand Up @@ -96,6 +96,14 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$OPENSSL3" ]; then
make install_sw
fi

if [ "$TRAVIS_OS_NAME" = linux -a "$MBEDTLS3" ]; then
cd $HOME
git clone --depth=1 -b v3.0.0 https://github.com:ARMmbed/mbedtls
cd mbedtls
make
make DESTDIR=$HOME/mbedtls3
fi

if [ "$TRAVIS_OS_NAME" = linux -a "$LIBRESSL" ]; then
cd $HOME
git clone --depth=1 -b v3.1.4 https://github.com/libressl-portable/portable.git libressl-git
Expand Down
19 changes: 19 additions & 0 deletions zuul.d/jobs.yaml
Expand Up @@ -245,6 +245,24 @@
LD_LIBRARY_PATH: "{{ ansible_user_dir }}/openssl3/lib64:/usr/local/lib"
TFLAGS: https ftps
- job:
name: curl-debug-mbedtls3
parent: curl-base
vars:
curl_apt_packages:
- libpsl-dev
- libbrotli-dev
- libzstd-dev
curl_env:
CC: gcc-8
CXX: g++-8
T: debug
MBEDTLS3: "yes"
C: >-
--with-mbedtls={{ ansible_user_dir }}/mbedtls3
LD_LIBRARY_PATH: "{{ ansible_user_dir }}/mbedtls3/lib:/usr/local/lib"
TFLAGS: https ftps
- job:
name: curl-debug-mesalink
parent: curl-base
Expand Down Expand Up @@ -545,6 +563,7 @@
- curl-novalgrind-ngtcp2-gnutls
- curl-debug-wolfssl
- curl-debug-openssl3
- curl-debug-mbedtls3
- curl-debug-mesalink
- curl-debug-clang-with-openssl
- curl-debug-clang-disable-alt-svc-with-openssl
Expand Down

0 comments on commit 9dedf57

Please sign in to comment.