Skip to content

Commit 28e934e

Browse files
authored
feat(jenkins): Builds with jdk 21 on the infrastructure.
1 parent ebe488c commit 28e934e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Jenkinsfile

+10-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
buildPlugin(platforms: ["linux"])
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+
])

0 commit comments

Comments
 (0)