From a22f5e7c6ff5607c6d5b4c5b843bbe9460ad199b Mon Sep 17 00:00:00 2001 From: iphydf Date: Wed, 11 Jan 2017 17:53:26 +0000 Subject: [PATCH] Clarify how the autotools build is done on Travis. --- other/travis/autotools-script | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/other/travis/autotools-script b/other/travis/autotools-script index 3ab598c0..026967b7 100755 --- a/other/travis/autotools-script +++ b/other/travis/autotools-script @@ -1,6 +1,9 @@ #!/bin/sh -# Build toxcore and run tests. +# Build toxcore with some custom flags here. Note that this does *not* run the +# tests, so any flags passed here are irrelevant to testing. This only checks +# that we can build toxcore with the specified flags. Tests run with default +# configure flags. ./autogen.sh ./configure \ --with-nacl-libs=$CACHE_DIR/lib/amd64 \ @@ -15,4 +18,7 @@ # ever run natively on the Linux container, never on a Windows cross compilation # docker instance or an OSX machine. make -j$NPROC -k + +# This runs `make check` with the default configure flags, not with the ones +# above. make distcheck -j$NPROC -k