From 5c5d3b273ebbcad933abeef78cf38a60b8d0a315 Mon Sep 17 00:00:00 2001 From: "A. Jard" Date: Fri, 18 Mar 2022 00:43:27 +0100 Subject: [PATCH] Enable jdk11 build on CI (#26) --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 77c9ed7..947643f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,8 @@ #!/usr/bin/env groovy /* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */ -buildPlugin() +buildPlugin(configurations: [ + [platform: 'linux', jdk: '8'], + [platform: 'linux', jdk: '11'], + [platform: 'windows', jdk: '11'], +])