From 6445bf30c12a87c06ee0b24b19293efefc8cad27 Mon Sep 17 00:00:00 2001 From: Antonio Quartulli Date: Fri, 14 Jan 2022 13:25:38 +0100 Subject: [PATCH] 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 --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.2