mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
de966cdf90
This ensures that on Travis, format_test will always be executed, or the build fails.
15 lines
124 B
Bash
15 lines
124 B
Bash
#!/bin/sh
|
|
|
|
CMAKE=cmake
|
|
CMAKE_EXTRA_FLAGS="-DFORMAT_TEST=ON"
|
|
NPROC=`nproc`
|
|
CURDIR=$PWD
|
|
|
|
RUN() {
|
|
"$@"
|
|
}
|
|
|
|
TESTS() {
|
|
"$@"
|
|
}
|