c48e8bfad3
Now that `ci/installdeps.sh` gracefully exits if run as non-root, we can fold the cargo bits into the our build scripts and avoid invoking both of them. However, now we need to split test deps to separate file because we won't have `cargo` in the main cosa pod. This also fixes a FIXME. Steal the `grep` invocation from cosa and make it a declarative text file so we can have comments per package etc.
16 lines
368 B
Bash
Executable File
16 lines
368 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
|
|
# 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:-}
|