From 2157334d9c09fed19a4d722ea41d220c2c0e6614 Mon Sep 17 00:00:00 2001 From: Basil Crow Date: Sat, 12 Aug 2023 01:02:16 -0700 Subject: [PATCH] Simplify test matrix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2ffb08b..8b7fd8d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ buildPlugin(useContainerAgent: true, configurations: [ - [ platform: 'linux', jdk: '17' ], - [ platform: 'linux', jdk: '21' ] + [platform: 'linux', jdk: 21], + [platform: 'windows', jdk: 17], ])