From 0d534754540e7d0df8be5f6e169143b7bb31b313 Mon Sep 17 00:00:00 2001 From: KingLucius Date: Mon, 23 Oct 2023 10:30:29 +0300 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1468daf..1a806ded 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,11 +76,11 @@ jobs: - name: Configure autotools (Linux, gnutls) if: runner.os == 'Linux' && matrix.crypto == 'gnutls' run: | - ./configure --with-gnutls --without-openssl ARIA2_STATIC=yes --disable-shared + ./configure ARIA2_STATIC=yes --with-gnutls --without-openssl - name: Configure autotools (Linux, openssl) if: runner.os == 'Linux' && matrix.crypto == 'openssl' run: | - ./configure --without-gnutls --with-openssl ARIA2_STATIC=yes --disable-shared + ./configure ARIA2_STATIC=yes --without-gnutls --with-openssl - name: Configure autotools (macOS) if: runner.os == 'macOS' run: |