summaryrefslogtreecommitdiffstats
path: root/ci/build_openssl1.sh
blob: e350b36979fefa1a4c8978afa77da3a7ad70ecc1 (plain)
1
2
3
4
5
6
7
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