From 0e7884d13a1560e6fb9c03c2c898046cef808d81 Mon Sep 17 00:00:00 2001 From: Christian Sarre Date: Tue, 17 Sep 2024 13:18:55 +0300 Subject: [PATCH] Update OpenSSL to version 3.0.15. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb6fab2..d30bd35 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -95,9 +95,9 @@ build-x86_64-linux-musl: # Build OpenSSL statically - apt-get install -y build-essential wget musl-tools - - wget https://www.openssl.org/source/openssl-3.0.14.tar.gz - - tar xzvf openssl-3.0.14.tar.gz - - cd openssl-3.0.14 + - wget https://github.com/openssl/openssl/releases/download/openssl-3.0.15/openssl-3.0.15.tar.gz + - tar xzvf openssl-3.0.15.tar.gz + - cd openssl-3.0.15 - ./config no-async -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local - make - make install