We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e57634f + e40b9b9 commit b8c1814Copy full SHA for b8c1814
Jenkinsfile
@@ -1,9 +1,13 @@
1
-configurations = [[platform: 'linux', jdk: 21]]
2
-if (env.CHANGE_ID == null) { // TODO https://github.com/jenkins-infra/helpdesk/issues/3931 workaround
3
- configurations += [platform: 'windows', jdk: 17]
4
-}
+/*
+ See the documentation for more options:
+
+https://github.com/jenkins-infra/pipeline-library/
5
6
+*/
7
buildPlugin(
8
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
9
forkCount: '1C',
- configurations: configurations
-)
10
+ configurations: [
11
+ [platform: 'linux', jdk: 21],
12
+ [platform: 'windows', jdk: 17],
13
+])
0 commit comments