Use nproc jobs in Travis CI

Signed-off-by: Tomasz Michalak <tmichalak@antmicro.com>
diff --git a/.travis/build-and-test.sh b/.travis/build-and-test.sh
index 928f1a3..e1cd5df 100755
--- a/.travis/build-and-test.sh
+++ b/.travis/build-and-test.sh
@@ -28,7 +28,7 @@
 echo 'Building plugins..' && echo -en 'travis_fold:start:script.build\\r'
 echo
 
-make plugins
+make plugins -j`nproc`
 
 echo
 echo -en 'travis_fold:end:script.build\\r'
@@ -40,7 +40,7 @@
 echo 'Installing plugins...' && echo -en 'travis_fold:start:script.build\\r'
 echo
 
-make install
+make install -j`nproc`
 
 echo
 echo -en 'travis_fold:end:script.build\\r'
@@ -52,7 +52,7 @@
 echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r'
 echo
 
-make test
+make test -j`nproc`
 
 echo
 echo -en 'travis_fold:end:script.test\\r'