mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
parent
392fdb0438
commit
6c82e3f42d
13
.github/workflows/wolfssl.yml
vendored
13
.github/workflows/wolfssl.yml
vendored
@ -20,9 +20,14 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build:
|
build:
|
||||||
- name: wolfssl
|
- name: wolfssl (configured with --enable-all)
|
||||||
install:
|
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:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
@ -35,14 +40,14 @@ jobs:
|
|||||||
tar -xzf v5.0.0-stable.tar.gz
|
tar -xzf v5.0.0-stable.tar.gz
|
||||||
cd wolfssl-5.0.0-stable
|
cd wolfssl-5.0.0-stable
|
||||||
./autogen.sh
|
./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
|
make && make install
|
||||||
|
|
||||||
name: 'install wolfssl'
|
name: 'install wolfssl'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- 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'
|
name: 'configure and build'
|
||||||
|
|
||||||
- run: make V=1 test-ci
|
- run: make V=1 test-ci
|
||||||
|
Loading…
Reference in New Issue
Block a user