From 348bfa119650533cf143137c03bc1e01289bd017 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Mon, 2 Jan 2023 21:37:52 +0100 Subject: [PATCH] Disable build on Windows by Jenkins - build takes a lot of time ... we have build on Windows by GitHub, should be enough --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7fd400529a..004b09ec46 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,8 @@ properties( disableConcurrentBuilds() ] ) -final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he'] +// final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he'] +final def oses = ['linux':'ubuntu && maven'] final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x'] // all non-EOL versions and the first EA final def jdks = [19, 17, 11, 8]