Skip to content

Commit

Permalink
Test with Java 21.
Browse files Browse the repository at this point in the history
  • Loading branch information
gounthar committed Oct 13, 2023
1 parent 7b72cf4 commit 4018b5e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!groovy
def recentLTS = '2.375.2'
/*
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
// Container agents start faster and are easier to administer
useContainerAgent: true,
configurations: [
[platform: 'linux', jdk: '11'],
[platform: 'linux', jdk: '17', jenkins: recentLTS],
[platform: 'windows', jdk: '17', jenkins: recentLTS],
]
)
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],
])

0 comments on commit 4018b5e

Please sign in to comment.