mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
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 <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>
This commit is contained in:
parent
508ee74a96
commit
6445bf30c1
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yaml
vendored
6
.github/workflows/build.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue