summaryrefslogtreecommitdiff
path: root/other/travis/autotools-script
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2017-01-11 17:53:26 +0000
committeriphydf <iphydf@users.noreply.github.com>2017-01-18 10:56:16 +0000
commita22f5e7c6ff5607c6d5b4c5b843bbe9460ad199b (patch)
tree990546848e0b363fde05152e15932921a407655e /other/travis/autotools-script
parent86e67f805ad4328afe97273a04cfc8d5b322403b (diff)
Clarify how the autotools build is done on Travis.
Diffstat (limited to 'other/travis/autotools-script')
-rwxr-xr-xother/travis/autotools-script8
1 files changed, 7 insertions, 1 deletions
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 @@
1#!/bin/sh 1#!/bin/sh
2 2
3# Build toxcore and run tests. 3# Build toxcore with some custom flags here. Note that this does *not* run the
4# tests, so any flags passed here are irrelevant to testing. This only checks
5# that we can build toxcore with the specified flags. Tests run with default
6# configure flags.
4./autogen.sh 7./autogen.sh
5./configure \ 8./configure \
6 --with-nacl-libs=$CACHE_DIR/lib/amd64 \ 9 --with-nacl-libs=$CACHE_DIR/lib/amd64 \
@@ -15,4 +18,7 @@
15# ever run natively on the Linux container, never on a Windows cross compilation 18# ever run natively on the Linux container, never on a Windows cross compilation
16# docker instance or an OSX machine. 19# docker instance or an OSX machine.
17make -j$NPROC -k 20make -j$NPROC -k
21
22# This runs `make check` with the default configure flags, not with the ones
23# above.
18make distcheck -j$NPROC -k 24make distcheck -j$NPROC -k