diff options
Diffstat (limited to '')
-rwxr-xr-x | ci/build_wolfssl.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ci/build_wolfssl.sh b/ci/build_wolfssl.sh new file mode 100755 index 0000000..3d179ed --- /dev/null +++ b/ci/build_wolfssl.sh @@ -0,0 +1,9 @@ +#!/bin/sh -e +# wolfssl (for GitHub workflow) + +git clone --depth 1 https://github.com/wolfSSL/wolfssl +cd wolfssl +autoreconf -i +./configure --prefix=$PWD/build --enable-all --enable-quic +make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" +make install |