From 011d97f8436ecea06eb91dba22de6b64542e44c8 Mon Sep 17 00:00:00 2001 From: timvisee Date: Thu, 7 Oct 2021 13:07:07 +0200 Subject: [PATCH] Compile OpenSSL with no-async --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 01950a9..1410c8f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -98,7 +98,7 @@ build-x86_64-linux-musl: - 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 + - ./config no-async -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local - make - make install - cd ..