From 378299637680789d2ce36e90f7bb96b84d6afc9c Mon Sep 17 00:00:00 2001 From: timvisee Date: Wed, 6 Oct 2021 18:03:22 +0200 Subject: [PATCH] Update static OpenSSL version to 1.1.1k --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1ce00f..01950a9 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/old/1.0.2/openssl-1.0.2o.tar.gz - - tar xzvf openssl-1.0.2o.tar.gz - - cd openssl-1.0.2o + - wget https://www.openssl.org/source/old/1.1.1/openssl-1.1.1k.tar.gz + - tar xzvf openssl-1.1.1k.tar.gz + - cd openssl-1.1.1k - ./config -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local - make - make install