summaryrefslogtreecommitdiffstats
path: root/ci/build_openssl3.sh
blob: 0f517c6bbf7854c8efbb008ca9630ce61206fa52 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh -e
# build patched openssl (for GitHub workflow)

git clone --depth 1 -b openssl-3.0.7+quic https://github.com/quictls/openssl
cd openssl
./config --prefix=$PWD/build --openssldir=/etc/ssl
make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)"
make install_sw