Skip to content

Commit b8c1814

Browse files
authored
Merge pull request #356 from jglick/windows
Restore Windows branch in PRs
2 parents e57634f + e40b9b9 commit b8c1814

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

Jenkinsfile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
}
1+
/*
2+
See the documentation for more options:
3+
4+
https://github.com/jenkins-infra/pipeline-library/
5+
6+
*/
57
buildPlugin(
68
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
79
forkCount: '1C',
8-
configurations: configurations
9-
)
10+
configurations: [
11+
[platform: 'linux', jdk: 21],
12+
[platform: 'windows', jdk: 17],
13+
])

0 commit comments

Comments
 (0)