diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-08-08 23:19:33 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-08-09 10:26:11 +0200 |
commit | 3e2a229783b8a8efe88574ec3b6e8c9d060e40e8 (patch) | |
tree | 29ed42f918f76dc54b4795a501ffd68570bee083 /scripts | |
parent | 3f126138be3c459a2794d35f8170e92e65a50dad (diff) | |
download | curl-3e2a229783b8a8efe88574ec3b6e8c9d060e40e8.tar.gz |
zuul: add an mbedtls3 CI job
Closes #7544
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/zuul/before_script.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/zuul/before_script.sh b/scripts/zuul/before_script.sh index 7a03e453a..79bdb04b5 100755 --- a/scripts/zuul/before_script.sh +++ b/scripts/zuul/before_script.sh @@ -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 install +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 |