xref: /netbsd-src/external/bsd/pam-u2f/dist/build-aux/ci/build-linux-gcc.sh (revision 3ff1169c71051ece76f531052b2ab22d07f38c9c)
1#!/usr/bin/env bash
2set -ex
3
4BUILDROOT="$(git rev-parse --show-toplevel)"
5
6pushd "$BUILDROOT" &>/dev/null
7  ./autogen.sh
8  ./configure --disable-silent-rules --disable-man
9  make -j $(nproc) check
10popd &>/dev/null
11