From 207254954f74ea1199c25edc4a93d3925482fd5d Mon Sep 17 00:00:00 2001 From: Basil Crow Date: Sat, 12 Aug 2023 01:12:29 -0700 Subject: [PATCH] Simplify test matrix (#101) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index db90144..163b3ff 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ * allowing one to test against multiple Jenkins versions. */ buildPlugin(useContainerAgent: true, configurations: [ - [ platform: 'linux', jdk: '11' ], - [ platform: 'linux', jdk: '17' ], - [ platform: 'linux', jdk: '21' ] + [platform: 'linux', jdk: 21], + [platform: 'linux', jdk: 17], ]) +