From ded56a90d22dfb53ec99c03fdaf735fb62e1afd7 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Fri, 3 May 2024 11:06:13 +0200 Subject: [PATCH] Exclude JDK 8 - temurin, adopt-openj9 on macos --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 9626813b1..7578f607f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,5 +29,6 @@ jobs: jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]' matrix-exclude: '[ { "jdk": "8", "distribution": "microsoft"}, - { "jdk": "21", "distribution": "adopt-openj9"} + { "jdk": "8", "distribution": "temurin", "os": "macos-latest" }, + { "jdk": "8", "distribution": "adopt-openj9", "os": "macos-latest" } ]'