CI: test building wolfssl with --enable-opensslextra

Closes #8315
This commit is contained in:
Harry Sarson 2022-01-21 13:31:48 +00:00 committed by Daniel Stenberg
parent 392fdb0438
commit 6c82e3f42d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -20,9 +20,14 @@ jobs:
fail-fast: false
matrix:
build:
- name: wolfssl
- name: wolfssl (configured with --enable-all)
install:
configure: --with-wolfssl=$HOME/wssl --enable-debug --enable-werror
wolfssl-configure: --enable-all
curl-configure: --with-wolfssl=$HOME/wssl --enable-debug --enable-werror
- name: wolfssl (configured with --enable-opensslextra)
install:
wolfssl-configure: --enable-opensslextra
curl-configure: --with-wolfssl=$HOME/wssl --enable-debug --enable-werror
steps:
- run: |
@ -35,14 +40,14 @@ jobs:
tar -xzf v5.0.0-stable.tar.gz
cd wolfssl-5.0.0-stable
./autogen.sh
./configure --enable-tls13 --enable-all --enable-harden --prefix=$HOME/wssl
./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl
make && make install
name: 'install wolfssl'
- uses: actions/checkout@v2
- run: ./buildconf && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
- run: ./buildconf && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror ${{ matrix.build.curl-configure }} && make V=1
name: 'configure and build'
- run: make V=1 test-ci