From 1824ec49d5d3c8fe1702050a22edb29855009e2d Mon Sep 17 00:00:00 2001 From: Baptiste Mathus Date: Tue, 10 Nov 2020 11:06:16 +0100 Subject: [PATCH 1/5] Explode recommendedConfigurations First step: only Linux default build, will uncomment the rest progressively to see what/if this fails. --- Jenkinsfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87a086d..fac7df2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,11 @@ -buildPlugin(configurations: buildPlugin.recommendedConfigurations()) +buildPlugin(configurations: [ + // Test Windows & Linux with default values + [ platform: "linux", jdk: "8", jenkins: null ], + // [ platform: "windows", jdk: "8", jenkins: null ], + + // // More recent LTS, only Linux + // [ platform: "windows", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], + + // // Checking JDK 11 + // [ platform: "linux", jdk: "11", jenkins: null ] +]) From a9573b621c392adfae862769687cc78f43531ed2 Mon Sep 17 00:00:00 2001 From: Baptiste Mathus Date: Tue, 10 Nov 2020 13:50:14 +0100 Subject: [PATCH 2/5] Test on more recent LTS --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fac7df2..8a6a6cb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,9 +3,9 @@ buildPlugin(configurations: [ [ platform: "linux", jdk: "8", jenkins: null ], // [ platform: "windows", jdk: "8", jenkins: null ], - // // More recent LTS, only Linux - // [ platform: "windows", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], + // More recent LTS, only Linux + [ platform: "linux", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], - // // Checking JDK 11 + // Checking JDK 11 // [ platform: "linux", jdk: "11", jenkins: null ] ]) From 4abb3cc1a6c4e8c92c747c3473b46371fa44b957 Mon Sep 17 00:00:00 2001 From: Baptiste Mathus Date: Tue, 10 Nov 2020 14:17:19 +0100 Subject: [PATCH 3/5] Test on JDK 11 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8a6a6cb..7235e6a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,5 +7,5 @@ buildPlugin(configurations: [ [ platform: "linux", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], // Checking JDK 11 - // [ platform: "linux", jdk: "11", jenkins: null ] + [ platform: "linux", jdk: "11", jenkins: null ] ]) From 542e798602e96e03a63aadd3fba5ac6d51df8dbc Mon Sep 17 00:00:00 2001 From: Baptiste Mathus Date: Tue, 10 Nov 2020 14:44:12 +0100 Subject: [PATCH 4/5] Test on Windows (with default settings) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7235e6a..e0baa4e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ buildPlugin(configurations: [ // Test Windows & Linux with default values [ platform: "linux", jdk: "8", jenkins: null ], - // [ platform: "windows", jdk: "8", jenkins: null ], + [ platform: "windows", jdk: "8", jenkins: null ], // More recent LTS, only Linux [ platform: "linux", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], From 4576d3f97cc5e3602d1305aad4f3e7f8bf07de73 Mon Sep 17 00:00:00 2001 From: Baptiste Mathus Date: Tue, 10 Nov 2020 14:56:40 +0100 Subject: [PATCH 5/5] Comment out the windows build --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e0baa4e..6a03478 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ buildPlugin(configurations: [ // Test Windows & Linux with default values [ platform: "linux", jdk: "8", jenkins: null ], - [ platform: "windows", jdk: "8", jenkins: null ], + //[ platform: "windows", jdk: "8", jenkins: null ], // More recent LTS, only Linux [ platform: "linux", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ],