blob: 021ec977be517b207e06b5c3809f77848d277075 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail -o xtrace
readonly boost_fs="boost_${boost_version//\./_}"
readonly boost_dir="$HOME/$boost_fs"
readonly boost_librarydir="$boost_dir/stage/$arch/$build_type/lib"
readonly build_dir="$HOME/build"
readonly install_dir="$HOME/install"
main() {
mkdir -p -- "$build_dir"
cd -- "$build_dir"
cmake \
-D "CMAKE_BUILD_TYPE=$build_type" \
-D "CMAKE_CXX_STANDARD_LIBRARIES=-lpthread" \
-D "CMAKE_INSTALL_PREFIX=$install_dir" \
-D "BOOST_ROOT=$boost_dir" \
-D "BOOST_LIBRARYDIR=$boost_librarydir" \
-D ENABLE_TESTS=ON \
"$TRAVIS_BUILD_DIR"
cmake --build . --config "$build_type" --target install -- -j
"$install_dir/bin/unit_tests" --log_level=all
}
main
|