- 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
- 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 ####
- 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
- 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
- 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 .
- 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'
- 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
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
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
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
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
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
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"
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
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
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
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"
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
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
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
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
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"