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

@ -191,7 +191,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'libressl') }}
run: |
git clone --depth=1 -b v3.6.1 https://github.com/libressl-portable/portable.git libressl-git
git clone --quiet --depth=1 -b v3.6.1 https://github.com/libressl-portable/portable.git libressl-git
cd libressl-git
./autogen.sh
./configure --prefix=$HOME/libressl
@ -200,7 +200,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'quiche') }}
run: |
git clone --depth=1 --recursive https://github.com/cloudflare/quiche.git
git clone --quiet --depth=1 --recursive https://github.com/cloudflare/quiche.git
cd quiche
#### Work-around https://github.com/curl/curl/issues/7927 #######
#### See https://github.com/alexcrichton/cmake-rs/issues/131 ####
@ -221,14 +221,14 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'mbedtls') }}
run: |
git clone --depth=1 -b v3.3.0 https://github.com/ARMmbed/mbedtls
git clone --quiet --depth=1 -b v3.3.0 https://github.com/ARMmbed/mbedtls
cd mbedtls
make DESTDIR=$HOME/mbed install
name: 'install mbedtls'
- if: ${{ contains(matrix.build.install_steps, 'openssl3') }}
run: |
git clone --depth=1 https://github.com/openssl/openssl
git clone --quiet --depth=1 https://github.com/openssl/openssl
cd openssl
./config enable-tls1_3 --prefix=$HOME/openssl3
make install_sw
@ -236,7 +236,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'quictls') }}
run: |
git clone --depth=1 -b OpenSSL_1_1_1t+quic https://github.com/quictls/openssl
git clone --quiet --depth=1 -b OpenSSL_1_1_1t+quic https://github.com/quictls/openssl
cd openssl
./config enable-tls1_3 --prefix=$HOME/quictls
make install_sw
@ -244,7 +244,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'msh3') }}
run: |
git clone -b v0.6.0 --depth=1 --recursive https://github.com/nibanks/msh3
git clone --quiet -b v0.6.0 --depth=1 --recursive https://github.com/nibanks/msh3
cd msh3 && mkdir build && cd build
cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=$HOME/msh3 ..
cmake --build .
@ -261,7 +261,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'rustls') }}
run: |
git clone --depth=1 -b v0.9.2 --recursive https://github.com/rustls/rustls-ffi.git
git clone --quiet --depth=1 -b v0.9.2 --recursive https://github.com/rustls/rustls-ffi.git
cd rustls-ffi
make DESTDIR=$HOME/rustls install
name: 'install rustls'
@ -269,7 +269,7 @@ jobs:
- if: ${{ contains(matrix.build.install_steps, 'hyper') }}
run: |
cd $HOME
git clone --depth=1 https://github.com/hyperium/hyper.git
git clone --quiet --depth=1 https://github.com/hyperium/hyper.git
cd $HOME/hyper
RUSTFLAGS="--cfg hyper_unstable_ffi" cargo +nightly rustc --features client,http1,http2,ffi -Z unstable-options --crate-type cdylib
echo "LD_LIBRARY_PATH=$HOME/hyper/target/debug:/usr/local/lib" >> $GITHUB_ENV