From 3099614aeca122190e37604d65fb3f1128e1c39b Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Thu, 4 Jan 2024 13:32:24 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ce7f7e8..50f3752 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,11 @@ -buildPlugin(useContainerAgent: true, configurations: [ -[platform: 'linux', jdk: '11'], -[platform: 'linux', jdk: '17'], -[platform: 'linux', jdk: '21'] +/* + See the documentation for more options: + https://github.com/jenkins-infra/pipeline-library/ +*/ +buildPlugin( + forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores + useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests + configurations: [ + [platform: 'linux', jdk: 21], + [platform: 'windows', jdk: 17], ])