From e40b9b99f14984016c8b63d645ac4d9224a29a98 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 6 Feb 2024 08:09:55 -0500 Subject: [PATCH] Revert "Skip Windows builds in PRs for now https://github.com/jenkins-infra/helpdesk/issues/3931#issuecomment-1922356825" This reverts commit d9be80af8f6d67cce9e41eabc3e6dc2b71330775. --- Jenkinsfile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3391e0e0..d9462bd5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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], +])