From: Antonio Quartulli Date: Fri, 14 Jan 2022 12:25:38 +0000 (+0100) Subject: GitHub Actions: ensure Ubuntu builds are made with the chosen SSL library X-Git-Tag: v2.6_beta1~335 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6445bf30c12a87c06ee0b24b19293efefc8cad27;p=thirdparty%2Fopenvpn.git GitHub Actions: ensure Ubuntu builds are made with the chosen SSL library The configure parameter was appended to the stage name but not to the actual command. Fix this. Cc: Arne Schwabe Signed-off-by: Antonio Quartulli Acked-by: Gert Doering Message-Id: <20220114122538.24662-1-a@unstable.cc> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg23539.html Signed-off-by: Gert Doering --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ea1233b13..354a32560 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -131,7 +131,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-18.04, ubuntu-20.04] - sslpkg: [libssl-dev] + sslpkg: [libmbedtls-dev] ssllib: [mbedtls] libname: [mbed TLS] @@ -161,8 +161,8 @@ jobs: uses: actions/checkout@v2 - name: autoconf run: autoreconf -fvi - - name: configure --with-crypto-library=${{matrix.ssllib}} - run: ./configure + - name: configure + run: ./configure --with-crypto-library=${{matrix.ssllib}} - name: make all run: make -j3 - name: make check