]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
SCRIPTS: build-ssl: use QUICTLS_VERSION instead of QUICTLS=yes
authorWilliam Lallemand <wlallemand@haproxy.com>
Mon, 19 Jan 2026 10:43:24 +0000 (11:43 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Mon, 19 Jan 2026 10:43:24 +0000 (11:43 +0100)
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.

scripts/build-ssl.sh

index dd1bc057c5a5cdd0ffc71630e18b9d8057baf4c2..f98441b6e9e3b5c43f21903f49648a9141fc45d6 100755 (executable)
@@ -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