From: William Lallemand Date: Mon, 19 Jan 2026 10:43:24 +0000 (+0100) Subject: SCRIPTS: build-ssl: use QUICTLS_VERSION instead of QUICTLS=yes X-Git-Tag: v3.4-dev3~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8e91f619a104ed1dde08443519f2cb0707c7b15;p=thirdparty%2Fhaproxy.git SCRIPTS: build-ssl: use QUICTLS_VERSION instead of QUICTLS=yes Quictls has multiple versions and the CI are not able to test a specific one because the script uses the default git branch. This patch allows to checkout the right tag or branch. --- diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh index dd1bc057c..f98441b6e 100755 --- a/scripts/build-ssl.sh +++ b/scripts/build-ssl.sh @@ -200,6 +200,7 @@ download_quictls () { else ( cd ${BUILDSSL_TMPDIR}/quictls + git checkout "${QUICTLS_VERSION}" git pull ) fi @@ -287,7 +288,7 @@ if [ ! -z ${AWS_LC_FIPS_VERSION+x} ]; then build_aws_lc_fips fi -if [ ! -z ${QUICTLS+x} ]; then +if [ ! -z ${QUICTLS_VERSION+x} ]; then download_quictls build_quictls fi