summaryrefslogtreecommitdiffstats
path: root/ci/build_nghttp3.sh
blob: 1e308ba3eed38084878e6ea00c83a933fdca5164 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e
# build nghttp3 (for GitHub workflow)

git clone https://github.com/ngtcp2/nghttp3
cd nghttp3
autoreconf -i
./configure --prefix=$PWD/build --enable-lib-only
make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" check
make install