parent
5126cbda00
commit
8203aa6ed4
16
.github/workflows/linux.yml
vendored
16
.github/workflows/linux.yml
vendored
@ -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
|
||||
|
||||
14
.github/workflows/ngtcp2-gnutls.yml
vendored
14
.github/workflows/ngtcp2-gnutls.yml
vendored
@ -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"
|
||||
|
||||
10
.github/workflows/ngtcp2-quictls.yml
vendored
10
.github/workflows/ngtcp2-quictls.yml
vendored
@ -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"
|
||||
|
||||
12
.github/workflows/ngtcp2-wolfssl.yml
vendored
12
.github/workflows/ngtcp2-wolfssl.yml
vendored
@ -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"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user