CI: skip make, do make install at once for dependencies

Signed-off-by: Philip Heiduck <pheiduck@Philips-MBP.lan>

Closes #9477
This commit is contained in:
Philip Heiduck 2022-09-12 00:04:32 +02:00 committed by Daniel Stenberg
parent fd840cdead
commit 2ca0530a4d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
7 changed files with 12 additions and 14 deletions

View File

@ -83,7 +83,7 @@ commands:
cd wolfssl-5.1.1-stable cd wolfssl-5.1.1-stable
./autogen.sh ./autogen.sh
./configure --enable-tls13 --enable-all --enable-harden --prefix=$HOME/wssl ./configure --enable-tls13 --enable-all --enable-harden --prefix=$HOME/wssl
make && make install make install
install-wolfssh: install-wolfssh:
steps: steps:
@ -94,7 +94,7 @@ commands:
cd wolfssh-1.4.8-stable cd wolfssh-1.4.8-stable
./autogen.sh ./autogen.sh
./configure --with-wolfssl=$HOME/wssl --prefix=$HOME/wssh --enable-scp --enable-sftp --disable-examples ./configure --with-wolfssl=$HOME/wssl --prefix=$HOME/wssh --enable-scp --enable-sftp --disable-examples
make && make install make install
configure-cares: configure-cares:
steps: steps:

View File

@ -43,9 +43,8 @@ jobs:
cd libressl-git cd libressl-git
./autogen.sh ./autogen.sh
./configure --prefix=$HOME/libressl ./configure --prefix=$HOME/libressl
make
make install make install
name: 'build and install libressl' name: 'install libressl'
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -39,7 +39,6 @@ jobs:
git clone --depth 1 -b OpenSSL_1_1_1j+quic https://github.com/quictls/openssl ossl git clone --depth 1 -b OpenSSL_1_1_1j+quic https://github.com/quictls/openssl ossl
cd ossl cd ossl
./config enable-tls1_3 --prefix=$HOME/quictls ./config enable-tls1_3 --prefix=$HOME/quictls
make
make install_sw make install_sw
name: 'install quictls' name: 'install quictls'

View File

@ -41,7 +41,7 @@ jobs:
cd nettle cd nettle
./.bootstrap ./.bootstrap
./configure LDFLAGS="-Wl,-rpath,$HOME/all/lib" ${{ matrix.build.nettle-configure }} --prefix=$HOME/all --libdir=$HOME/all/lib --disable-documentation ./configure LDFLAGS="-Wl,-rpath,$HOME/all/lib" ${{ matrix.build.nettle-configure }} --prefix=$HOME/all --libdir=$HOME/all/lib --disable-documentation
make && make install make install
name: 'install nettle' name: 'install nettle'
- run: | - run: |
@ -49,7 +49,7 @@ jobs:
cd gnutls cd gnutls
./bootstrap ./bootstrap
./configure PKG_CONFIG_PATH="$HOME/all/lib/pkgconfig" LDFLAGS="-Wl,-rpath,$HOME/all/lib -L$HOME/all/lib" --prefix=$HOME/all ${{ matrix.build.gnutls-configure }} --disable-tools ./configure PKG_CONFIG_PATH="$HOME/all/lib/pkgconfig" LDFLAGS="-Wl,-rpath,$HOME/all/lib -L$HOME/all/lib" --prefix=$HOME/all ${{ matrix.build.gnutls-configure }} --disable-tools
make V=1 && make install make install
name: 'install gnutls' name: 'install gnutls'
- run: | - run: |
@ -57,7 +57,7 @@ jobs:
cd nghttp3 cd nghttp3
autoreconf -fi autoreconf -fi
./configure --prefix=$HOME/all --enable-lib-only ./configure --prefix=$HOME/all --enable-lib-only
make && make install make install
name: 'install nghttp3' name: 'install nghttp3'
- run: | - run: |
@ -65,7 +65,7 @@ jobs:
cd ngtcp2 cd ngtcp2
autoreconf -fi autoreconf -fi
./configure PKG_CONFIG_PATH=$HOME/all/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/all/lib" --prefix=$HOME/all --enable-lib-only --with-gnutls=$HOME/all ./configure PKG_CONFIG_PATH=$HOME/all/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/all/lib" --prefix=$HOME/all --enable-lib-only --with-gnutls=$HOME/all
make && make install make install
name: 'install ngtcp2' name: 'install ngtcp2'
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -41,7 +41,7 @@ jobs:
cd wolfssl cd wolfssl
./autogen.sh ./autogen.sh
./configure ${{ matrix.build.wolfssl-configure }} --prefix=$HOME/all ./configure ${{ matrix.build.wolfssl-configure }} --prefix=$HOME/all
make && make install make install
name: 'install wolfssl' name: 'install wolfssl'
- run: | - run: |
@ -49,7 +49,7 @@ jobs:
cd nghttp3 cd nghttp3
autoreconf -fi autoreconf -fi
./configure --prefix=$HOME/all --enable-lib-only ./configure --prefix=$HOME/all --enable-lib-only
make && make install make install
name: 'install nghttp3' name: 'install nghttp3'
- run: | - run: |
@ -57,7 +57,7 @@ jobs:
cd ngtcp2 cd ngtcp2
autoreconf -fi autoreconf -fi
./configure PKG_CONFIG_PATH=$HOME/all/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/all/lib" --prefix=$HOME/all --enable-lib-only --with-wolfssl=$HOME/all ./configure PKG_CONFIG_PATH=$HOME/all/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/all/lib" --prefix=$HOME/all --enable-lib-only --with-wolfssl=$HOME/all
make && make install make install
name: 'install ngtcp2' name: 'install ngtcp2'
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -46,7 +46,7 @@ jobs:
git clone --depth=1 https://github.com/openssl/openssl git clone --depth=1 https://github.com/openssl/openssl
cd openssl cd openssl
./config enable-tls1_3 --prefix=$HOME/openssl3 ./config enable-tls1_3 --prefix=$HOME/openssl3
make && make install_sw make install_sw
name: 'install openssl3' name: 'install openssl3'
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -46,7 +46,7 @@ jobs:
cd wolfssl-5.0.0-stable cd wolfssl-5.0.0-stable
./autogen.sh ./autogen.sh
./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl ./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl
make && make install make install
name: 'install wolfssl' name: 'install wolfssl'
- uses: actions/checkout@v3 - uses: actions/checkout@v3