Skip to content

Commit 8031891

Browse files
authored
Merge pull request #622 from strangelookingnerd/patch-1
ci: stop running CI tests on jdk11
2 parents 7b1a9be + 7d56188 commit 8031891

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

Jenkinsfile

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
// Builds a module using https://github.com/jenkins-infra/pipeline-library
2-
buildPlugin(useContainerAgent: true, configurations: [
3-
[platform: 'linux', jdk: 11],
4-
[platform: 'windows', jdk: 11],
5-
[platform: 'linux', jdk: 17],
6-
[platform: 'linux', jdk: 21]
1+
/*
2+
See the documentation for more options:
3+
https://github.com/jenkins-infra/pipeline-library/
4+
*/
5+
buildPlugin(
6+
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
7+
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
8+
configurations: [
9+
[platform: 'linux', jdk: 21],
10+
[platform: 'windows', jdk: 17],
711
])

0 commit comments

Comments
 (0)