e15baebc68
This should also make it useful for bootstrapping a test container locally. Closes: #1606 Approved by: cgwalters
17 lines
332 B
Bash
Executable File
17 lines
332 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies and then build.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
${dn}/installdeps.sh
|
|
|
|
# create an unprivileged user for testing
|
|
adduser testuser
|
|
|
|
export LSAN_OPTIONS=verbosity=1:log_threads=1
|
|
# And now the build
|
|
build --enable-installed-tests --enable-gtk-doc ${CONFIGOPTS:-}
|