Skip to content

Commit

Permalink
Restore builds on JDK 17
Browse files Browse the repository at this point in the history
Signed-off-by: Cyrille Le Clerc <[email protected]>
  • Loading branch information
cyrille-leclerc committed Nov 13, 2024
1 parent e1e0b00 commit cd1906b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(useContainerAgent: false, configurations: [
[platform: 'linux', jdk: 21],
[platform: 'windows', jdk: 21],
])
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: false, // 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 cd1906b

Please sign in to comment.