-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathJenkinsfile
More file actions
14 lines (13 loc) · 644 Bytes
/
Jenkinsfile
File metadata and controls
14 lines (13 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
* See the documentation for more options:
* https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(useContainerAgent: true, configurations: [
// Test the common case (i.e., a recent LTS release) on both Linux and Windows
// with same core version as the lowest baseline requested by pom.xml
[ platform: 'linux', jdk: '17' ],
[ platform: 'windows', jdk: '21' ],
// Test the bleeding edge of the compatibility spectrum (i.e., the latest supported Java runtime).
// see also https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/
[ platform: 'linux', jdk: '25', jenkins: '2.541.1' ],
])