diff options
Diffstat (limited to 'other/travis/autotools-script')
-rwxr-xr-x | other/travis/autotools-script | 8 |
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. |
17 | make -j$NPROC -k | 20 | make -j$NPROC -k |
21 | |||
22 | # This runs `make check` with the default configure flags, not with the ones | ||
23 | # above. | ||
18 | make distcheck -j$NPROC -k | 24 | make distcheck -j$NPROC -k |