From 3b186312366c00927f83c27e6e513000fe286f66 Mon Sep 17 00:00:00 2001
From: Christian Kuhn <lolli@schwarzbu.ch>
Date: Tue, 22 Aug 2017 18:54:52 +0200
Subject: [PATCH] [TASK] travis-ci: Less parallel jobs

travis-ci still chockes on functional tests, even if
splitting them among lots of single tasks. Run less
tests in parallel and split to ever more jobs to have
a higher chance for 10 minute output with given cpu
constraints.

Change-Id: Iafc984aaef96ec59422f9c48a74b7308dd7cd7d7
Resolves: #82170
Releases: master, 8.7, 7.6
Reviewed-on: https://review.typo3.org/53779
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index fb65d3b6cf34..dac2d9d82aba 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -69,8 +69,8 @@ script:
         export typo3DatabaseHost="localhost";
         export typo3DatabaseUsername="root";
         export typo3DatabasePassword="";
-        ./typo3/sysext/core/Build/Scripts/splitFunctionalTests.sh 20;
-        parallel --jobs 4 -a <(seq 0 19) --gnu './bin/phpunit -c typo3/sysext/core/Build/FunctionalTests-Job-{}.xml'
+        ./typo3/sysext/core/Build/Scripts/splitFunctionalTests.sh 24;
+        parallel --jobs 4 -a <(seq 0 23) --gnu './bin/phpunit -c typo3/sysext/core/Build/FunctionalTests-Job-{}.xml'
     fi
   - >
     if [[ "$PHP_LINT" == "yes" ]]; then
-- 
GitLab