File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed
Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change 1- // Builds a module using https://github.com/jenkins-infra/pipeline-library
2- buildPlugin(useContainerAgent : true , configurations : [
3- [platform : ' linux' , jdk : 17 ],
4- [platform : ' windows' , jdk : 11 , jenkins : ' 2.407' ],
5- ])
1+ #! /usr/bin/env groovy
2+
3+ /* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
4+ buildPlugin(
5+ // Run a JVM per core in tests
6+ forkCount : ' 1C' ,
7+ // Container agents start faster and are easier to administer
8+ useContainerAgent : true ,
9+ // Show failures on all configurations
10+ failFast : false ,
11+ // Test Java 11 and Java 17
12+ configurations : [
13+ [platform : ' linux' , jdk : ' 17' ], // Linux first for coverage report on ci.jenkins.io
14+ [platform : ' windows' , jdk : ' 11' ],
15+ ]
16+ )
You can’t perform that action at this time.
0 commit comments