]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
GitHub Actions: ensure Ubuntu builds are made with the chosen SSL library
authorAntonio Quartulli <a@unstable.cc>
Fri, 14 Jan 2022 12:25:38 +0000 (13:25 +0100)
committerGert Doering <gert@greenie.muc.de>
Fri, 14 Jan 2022 13:16:39 +0000 (14:16 +0100)
The configure parameter was appended to the stage name but not to the
actual command. Fix this.

Cc: Arne Schwabe <arne@rfc2549.org>
Signed-off-by: Antonio Quartulli <a@unstable.cc>
Acked-by: Gert Doering <gert@greenie.muc.de>
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 <gert@greenie.muc.de>
.github/workflows/build.yaml

index ea1233b13152cf1449891ea2fd06bc4647af5f20..354a3256035f758ebd302184bdc66e41ab75f72a 100644 (file)
@@ -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