diff --git a/Jenkinsfile b/Jenkinsfile index 9adf0bc..361773e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,10 @@ /* -* `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], ])