Skip to content

Commit bbc80e7

Browse files
authored
Merge pull request #150 from jonesbusy/feature/jenkinsfile-archetype
Use Jenkinsfile from archetype
2 parents d70e7f8 + a0adad2 commit bbc80e7

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

Diff for: Jenkinsfile

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
/*
2-
* See the documentation for more options:
3-
* https://github.com/jenkins-infra/pipeline-library/
4-
*/
5-
buildPlugin(useContainerAgent: true, configurations: [
6-
[ platform: 'windows', jdk: 11],
7-
[ platform: 'linux', jdk: 17],
8-
[ platform: 'linux', jdk: 21],
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],
911
])

0 commit comments

Comments
 (0)