From 60103938d924029158b69135ab1ab31c68291655 Mon Sep 17 00:00:00 2001 From: Cervator Date: Tue, 20 Apr 2021 21:05:46 -0500 Subject: [PATCH] logistics: use new pre-cached builder image in Jenkins Also removes the already-default setting for the Gradle Daemon in case attempts to experiment are desired elsewhere (has no effect normally) --- Jenkinsfile | 2 +- templates/gradle.properties | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1470741c71e..0bca107ced5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ properties([ ]) // Main pipeline definition -node ("heavy-java") { +node ("ts-engine && heavy && java8") { stage('Checkout') { echo "Going to check out the things !" checkout scm diff --git a/templates/gradle.properties b/templates/gradle.properties index cfc68a8f235..0461586709b 100644 --- a/templates/gradle.properties +++ b/templates/gradle.properties @@ -2,8 +2,7 @@ # In Jenkins builds will default to "plain" and rich/verbose logging doesn't print right at all org.gradle.console=verbose -# These settings can speed up the execution of Gradle (and some may be set this way by default anyway) -org.gradle.daemon=true +# These settings may speed up the execution of Gradle or otherwise affect performance (daemon is on by default) org.gradle.parallel=false org.gradle.configureondemand=false org.gradle.jvmargs=-Xmx1024m