From a70dc77c5eb0de32a3d3cb8ad318cfb7336954c4 Mon Sep 17 00:00:00 2001 From: Johannes Link Date: Fri, 10 Nov 2023 15:03:39 +0100 Subject: [PATCH] Excluded version 20 from microsoft jdk in build matrix --- .github/workflows/matrix.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js index 4c5e5eda0..83f6eecd5 100644 --- a/.github/workflows/matrix.js +++ b/.github/workflows/matrix.js @@ -97,6 +97,7 @@ matrix.setNamePattern([ matrix.exclude({java_distribution: 'microsoft', java_version: '8'}); matrix.exclude({java_distribution: 'microsoft', java_version: '18'}); matrix.exclude({java_distribution: 'microsoft', java_version: '19'}); +matrix.exclude({java_distribution: 'microsoft', java_version: '20'}); // Oracle supports 17+ only matrix.exclude({java_distribution: 'oracle', java_version: ['8', '11', '19']}); // TODO: remove when compileJava with "same hashcode" issues are resolved