summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-08-04 11:50:34 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-08-14 09:29:28 -0700
commit3b3282c66f09583b29af2729668ceee2a9f703d2 (patch)
treec0ac355a94b8c13e3c7eb1a9d66117561c5ebf2f /.travis.yml
parentb960a473acdbf5a00c0d01c04b4d0099d57b1daa (diff)
travis: build with -j3
travis allocates ~2 cores per machine, so -j3 should speed things up.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index a658e26b..dd83f4fa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,7 +54,7 @@ before_install: |
# Make and install the library. We install the library without sudo as we
# might want to switch to the travis container later.
./configure --prefix=$HOME/.local
- make
+ make -j3 -l2
make install
# Export the library search path.
export LD_LIBRARY_PATH=$HOME/.local/lib