]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA: suppress git clone output
authorPhilip H <47042125+pheiduck@users.noreply.github.com>
Wed, 12 Apr 2023 08:27:42 +0000 (10:27 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 13 Apr 2023 06:56:48 +0000 (08:56 +0200)
Closes #10939

.github/workflows/linux.yml
.github/workflows/ngtcp2-gnutls.yml
.github/workflows/ngtcp2-quictls.yml
.github/workflows/ngtcp2-wolfssl.yml

index e752aefd3e806b3548f34dd81ba343a56eb65fcb..67965e163088d1d64fe97f183ee07ee326073199 100644 (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
index a97ee725f5f8283e6ba144e405df9bcc604586a8..943dc6642951b886b771aa792a19581c74997d74 100644 (file)
@@ -79,14 +79,14 @@ jobs:
       name: 'install prereqs and impacket, pytest, crypto'
 
     - 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 https://gitlab.com/gnutls/nettle.git
+        git clone --quiet --depth=1 https://gitlab.com/gnutls/nettle.git
         cd nettle
         ./.bootstrap
         ./configure LDFLAGS="-Wl,-rpath,$HOME/all/lib" ${{ matrix.build.nettle-configure }} --prefix=$HOME/all --libdir=$HOME/all/lib --disable-documentation
@@ -94,7 +94,7 @@ jobs:
       name: 'install nettle'
 
     - run: |
-        git clone --depth=1 -b 3.8.0 https://github.com/gnutls/gnutls.git
+        git clone --quiet --depth=1 -b 3.8.0 https://github.com/gnutls/gnutls.git
         cd gnutls
         ./bootstrap
         ./configure ${{ matrix.build.gnutls-configure }} --prefix=$HOME/all
@@ -102,7 +102,7 @@ jobs:
       name: 'install gnutls'
 
     - 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
@@ -110,7 +110,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-gnutls
@@ -118,7 +118,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
@@ -126,7 +126,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"
index 49888dad6b5612bdcf55d120baece4638afbc3c5..0cce56cf8cd8c0191da44c5b954bc8bb8826f3d4 100644 (file)
@@ -70,14 +70,14 @@ jobs:
       name: 'install prereqs and impacket, pytest, crypto'
 
     - 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
@@ -85,7 +85,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
@@ -93,7 +93,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
@@ -101,7 +101,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"
index 5369c2ee851ea164a0862f64cf67abc10834b2db..b5aa4212869218823e658b58b19f3ef596d1337a 100644 (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"