shithub: choc

Download patch

ref: 4f973607269383ad00d6b9b559ea2172d9719659
parent: f987f82eb1c06ba8b0c1f1e8bcbbbc47feca4afc
author: Simon Howard <fraggle@soulsphere.org>
date: Mon Nov 11 13:45:29 EST 2019

travis: Perform parallel builds.

According to the page here we get two cores, so run make with -j4 to ensure
there's always at least one process ready to be scheduled on each core.

<https://docs.travis-ci.com/user/reference/overview/>

--- a/.travis.sh
+++ b/.travis.sh
@@ -10,8 +10,8 @@
 else
 	set -e
 	./autogen.sh --enable-werror
-	make
+	make -j4
 	make install DESTDIR=/tmp/whatever
 	make dist
-	make -C quickcheck check SOURCE_PORT=$PWD/src/chocolate-doom
+	make -j4 -C quickcheck check SOURCE_PORT=$PWD/src/chocolate-doom
 fi