9f19ed2ac8
We need to cleanly split off "test dependencies" that we install inside the cosa pod from builds (where we won't have `cargo`) from the build time where we use the cosa buildroot image. Prep for using https://cxx.rs
23 lines
501 B
Bash
Executable File
23 lines
501 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies and then build.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
${dn}/install-extra-builddeps.sh
|
|
${dn}/installdeps.sh
|
|
|
|
# create an unprivileged user for testing
|
|
if ! getent passwd testuser; then
|
|
adduser testuser
|
|
fi
|
|
|
|
# make it clear what rustc version we're compiling with (this is grepped in CI)
|
|
rustc --version
|
|
|
|
export LSAN_OPTIONS=verbosity=1:log_threads=1
|
|
# And now the build
|
|
build --enable-installed-tests --enable-gtk-doc ${CONFIGOPTS:-}
|