toxcore/other/travis/env-linux.sh
iphydf de966cdf90
Error if format_test can't be executed.
This ensures that on Travis, format_test will always be executed, or the
build fails.
2016-10-26 13:34:29 +01:00

15 lines
124 B
Bash

#!/bin/sh
CMAKE=cmake
CMAKE_EXTRA_FLAGS="-DFORMAT_TEST=ON"
NPROC=`nproc`
CURDIR=$PWD
RUN() {
"$@"
}
TESTS() {
"$@"
}