summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-08-25 14:16:30 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-08-25 14:16:30 +0000
commit0935aab92760a7c9c547faa86c29dcd0d1e03f24 (patch)
tree0f9997fcc0471e394a3541acfe667c89a4a79c02 /.travis
parent853a2a10b1c305aca92e827d472722ba2211e505 (diff)
Run all tests (and compilation) in parallel with autotools.
With distcheck, it's all or nothing, so we build with -j50 and run tests with -j50.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/autotools-linux2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/autotools-linux b/.travis/autotools-linux
index 6d38e34e..a5bf1400 100755
--- a/.travis/autotools-linux
+++ b/.travis/autotools-linux
@@ -41,7 +41,7 @@ travis_script() {
41 cd _build # pushd 41 cd _build # pushd
42 ../configure $CONFIG_FLAGS || (cat config.log && false) 42 ../configure $CONFIG_FLAGS || (cat config.log && false)
43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS" 43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS"
44 make "-j$NPROC" -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" 44 make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS"
45 cd - # popd 45 cd - # popd
46} 46}
47 47