From 09414e27c26017477b2dc900ff447b60a8c63aeb Mon Sep 17 00:00:00 2001 From: strangelookingnerd <49242855+strangelookingnerd@users.noreply.github.com> Date: Fri, 10 Jan 2025 09:56:29 +0100 Subject: [PATCH 1/2] Stop testing Java 11 --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9adf0bc..09032da 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,11 @@ /* -* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library + See the documentation for more options: + https://github.com/jenkins-infra/pipeline-library/ */ buildPlugin( - useContainerAgent: true, + 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: 17], - [platform: 'linux', jdk: 11], + [platform: 'linux', jdk: 21], + [platform: 'windows', jdk: 17], ]) From a8349de54e5341ade571ae784f3b17a8c53c7ef7 Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:19:54 +0000 Subject: [PATCH 2/2] Update Jenkinsfile --- Jenkinsfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 09032da..361773e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,5 +7,4 @@ buildPlugin( useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests configurations: [ [platform: 'linux', jdk: 21], - [platform: 'windows', jdk: 17], ])