GHA: suppress git clone output

Closes #10939
This commit is contained in:
Philip H 2023-04-12 10:27:42 +02:00 committed by Daniel Stenberg
parent 5126cbda00
commit 8203aa6ed4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 26 additions and 26 deletions

View file

@ -74,7 +74,7 @@ jobs:
name: 'install prereqs and impacket, pytest, crypto'
- run: |
git clone https://github.com/wolfSSL/wolfssl.git
git clone --quiet --depth=1 https://github.com/wolfSSL/wolfssl.git
cd wolfssl
./autogen.sh
./configure ${{ matrix.build.wolfssl-configure }} --prefix=$HOME/all
@ -82,14 +82,14 @@ jobs:
name: 'install wolfssl'
- run: |
git clone --depth=1 -b openssl-3.0.8+quic https://github.com/quictls/openssl
git clone --quiet --depth=1 -b openssl-3.0.8+quic https://github.com/quictls/openssl
cd openssl
./config --prefix=$HOME/all --libdir=$HOME/all/lib
make install_sw
name: 'install quictls'
- run: |
git clone --depth=1 -b v0.10.0 https://github.com/ngtcp2/nghttp3
git clone --quiet --depth=1 -b v0.10.0 https://github.com/ngtcp2/nghttp3
cd nghttp3
autoreconf -fi
./configure --prefix=$HOME/all PKG_CONFIG_PATH="$HOME/all/lib/pkgconfig" --enable-lib-only
@ -97,7 +97,7 @@ jobs:
name: 'install nghttp3'
- run: |
git clone --depth=1 -b v0.13.1 https://github.com/ngtcp2/ngtcp2
git clone --quiet --depth=1 -b v0.13.1 https://github.com/ngtcp2/ngtcp2
cd ngtcp2
autoreconf -fi
./configure ${{ matrix.build.ngtcp2-configure }} --with-openssl --with-wolfssl
@ -105,7 +105,7 @@ jobs:
name: 'install ngtcp2'
- run: |
git clone --depth=1 -b v1.52.0 https://github.com/nghttp2/nghttp2
git clone --quiet --depth=1 -b v1.52.0 https://github.com/nghttp2/nghttp2
cd nghttp2
autoreconf -fi
./configure --prefix=$HOME/all PKG_CONFIG_PATH="$HOME/all/lib/pkgconfig" --enable-http3
@ -113,7 +113,7 @@ jobs:
name: 'install nghttp2'
- run: |
git clone --depth=1 -b master https://github.com/icing/mod_h2
git clone --quiet --depth=1 -b master https://github.com/icing/mod_h2
cd mod_h2
autoreconf -fi
./configure PKG_CONFIG_PATH="$HOME/all/lib/pkgconfig"