From e692278f931b4151f243a47c2031e9cca8cca1c9 Mon Sep 17 00:00:00 2001 From: aHenryJard Date: Thu, 23 Sep 2021 07:59:29 +0200 Subject: [PATCH 1/3] Enable jdk11 build on CI --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a229fa5..549c8c2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,4 @@ -buildPlugin() +buildPlugin(configurations: [ + [platform: 'linux', jdk: '8'], + [platform: 'linux', jdk: '11'], +]) From 88331769087654eff1d545e50476731deb91dffe Mon Sep 17 00:00:00 2001 From: "A. Jard" Date: Thu, 23 Sep 2021 10:02:28 +0200 Subject: [PATCH 2/3] Update Jenkinsfile Co-authored-by: Vincent Latombe --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 549c8c2..992d171 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,5 @@ buildPlugin(configurations: [ [platform: 'linux', jdk: '8'], [platform: 'linux', jdk: '11'], + [platform: 'windows', jdk: '8'], ]) From 041238c2aad1137ca82f63207f8395360917eefa Mon Sep 17 00:00:00 2001 From: "A. Jard" Date: Thu, 23 Sep 2021 10:11:55 +0200 Subject: [PATCH 3/3] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 992d171..842065e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ buildPlugin(configurations: [ [platform: 'linux', jdk: '8'], [platform: 'linux', jdk: '11'], - [platform: 'windows', jdk: '8'], + [platform: 'windows', jdk: '11'], ])