toxcore/.travis/cmake-osx
iphydf 597f23bdd9
Use run_auto_test.h test fixture for some auto-tests.
Most of the auto-tests should use this fixture, but I've only done a few
to set an example.
2018-07-05 23:41:27 +00:00

48 lines
977 B
Bash
Executable File

#!/bin/sh
ACTION="$1"
set -eu
CACHEDIR="$HOME/cache"
NPROC=`sysctl -n hw.physicalcpu`
travis_install() {
# Workaround for bug in Homebrew where it only finds an old Ruby version.
brew update
brew install libsodium libvpx opus libconfig
}
travis_script() {
. ".travis/flags-$CC.sh"
add_ld_flag -undefined error
# Make compilation error on a warning
add_flag -Werror
cmake -B_build -H. \
-DCMAKE_C_FLAGS="$C_FLAGS" \
-DCMAKE_CXX_FLAGS="$CXX_FLAGS" \
-DCMAKE_EXE_LINKER_FLAGS="$LD_FLAGS" \
-DCMAKE_SHARED_LINKER_FLAGS="$LD_FLAGS" \
-DCMAKE_INSTALL_PREFIX:PATH="$PWD/_install" \
-DTRACE=ON \
-DMUST_BUILD_TOXAV=ON \
-DTEST_TIMEOUT_SECONDS=120 \
-DUSE_IPV6=OFF
cd _build # pushd
make "-j$NPROC" -k install
make "-j$NPROC" test ARGS="-j50" || \
make "-j$NPROC" test ARGS="-j50 --rerun-failed" CTEST_OUTPUT_ON_FAILURE=1
cd - # popd
}
if [ "-z" "$ACTION" ]; then
"travis_script"
else
"travis_$ACTION"
fi