From dda893da40f7f4938e74d130ff1915d714fb7f54 Mon Sep 17 00:00:00 2001 From: Mark Thomas Date: Fri, 9 Oct 2020 10:00:19 +0100 Subject: [PATCH] Increase threads to 8 as s390x and arm64 are running out of time With a VM having only 2 cores I'd expect 4 threads to be sufficient but the reduction from 16 to 4 did trigger longer runs and failures so try 8. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index af374420bede..d72513a1e516 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,7 +71,7 @@ install: - cd $CURR_PWD - yes | cp build.properties.default build.properties - echo >> build.properties - - echo "test.threads=4" >> build.properties + - echo "test.threads=8" >> build.properties - echo "test.relaxTiming=true" >> build.properties - echo "test.excludePerformance=true" >> build.properties - echo "test.openssl.path=/dev/null/openssl" >> build.properties