Skip to content

Commit

Permalink
Merge pull request #356 from jglick/windows
Browse files Browse the repository at this point in the history
Restore Windows branch in PRs
  • Loading branch information
jglick authored Feb 6, 2024
2 parents e57634f + e40b9b9 commit b8c1814
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
configurations = [[platform: 'linux', jdk: 21]]
if (env.CHANGE_ID == null) { // TODO https://github.com/jenkins-infra/helpdesk/issues/3931 workaround
configurations += [platform: 'windows', jdk: 17]
}
/*
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
forkCount: '1C',
configurations: configurations
)
configurations: [
[platform: 'linux', jdk: 21],
[platform: 'windows', jdk: 17],
])

0 comments on commit b8c1814

Please sign in to comment.