Skip to content

Commit

Permalink
Merge pull request #172 from strangelookingnerd/patch-1
Browse files Browse the repository at this point in the history
Stop testing Java 11
  • Loading branch information
felfert authored Jan 12, 2025
2 parents 76fc388 + 1664b93 commit 12e4567
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: 17],
[platform: 'windows', jdk: 11],
/*
See the documentation for more options:
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: 21],
[platform: 'windows', jdk: 17],
])

0 comments on commit 12e4567

Please sign in to comment.