From 8fc5e316c27e58385d6174a75450b2762827c5be Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Sat, 13 Jan 2024 14:30:47 +0100 Subject: [PATCH] Use Jenkinsfile from archetype --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 42dfcbe..09032da 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,9 @@ 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: 17], - [platform: 'windows', jdk: 11], + [platform: 'linux', jdk: 21], + [platform: 'windows', jdk: 17], ])