diff options
Diffstat (limited to 'ci/build_openssl1.sh')
-rwxr-xr-x | ci/build_openssl1.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ci/build_openssl1.sh b/ci/build_openssl1.sh new file mode 100755 index 0000000..e350b36 --- /dev/null +++ b/ci/build_openssl1.sh @@ -0,0 +1,8 @@ +#!/bin/sh -e +# build patched openssl (for GitHub workflow) + +git clone --depth 1 -b OpenSSL_1_1_1s+quic https://github.com/quictls/openssl +cd openssl +./config --prefix=$PWD/build +make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" +make install_sw |