summaryrefslogtreecommitdiff
path: root/other/travis/toxcore-script
diff options
context:
space:
mode:
Diffstat (limited to 'other/travis/toxcore-script')
-rwxr-xr-xother/travis/toxcore-script8
1 files changed, 3 insertions, 5 deletions
diff --git a/other/travis/toxcore-script b/other/travis/toxcore-script
index 96193855..b1e60763 100755
--- a/other/travis/toxcore-script
+++ b/other/travis/toxcore-script
@@ -8,9 +8,7 @@ export CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
8# so it's disabled on Travis. 8# so it's disabled on Travis.
9RUN $CMAKE -B$BUILD_DIR -H. -DCMAKE_INSTALL_PREFIX:PATH=$CURDIR/_install -DDEBUG=ON -DASSOC_DHT=ON -DSTRICT_ABI=ON #-DASAN=ON 9RUN $CMAKE -B$BUILD_DIR -H. -DCMAKE_INSTALL_PREFIX:PATH=$CURDIR/_install -DDEBUG=ON -DASSOC_DHT=ON -DSTRICT_ABI=ON #-DASAN=ON
10 10
11RUN make -C $BUILD_DIR -j$NPROC -k install 11export CTEST_OUTPUT_ON_FAILURE=1
12 12
13if $TESTS; then 13RUN make -C$BUILD_DIR -j$NPROC -k install
14 export CTEST_OUTPUT_ON_FAILURE=1 14TESTS make -C$BUILD_DIR -j$NPROC test
15 RUN make -C $BUILD_DIR -j$NPROC test
16fi