From 84ba8c64db63856a8808570985c48d5180067a01 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 19 May 2022 11:23:38 +1000 Subject: [PATCH 1/3] test build on "18", "19-ea" --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1291a4dc..27d38495 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,7 +27,7 @@ jobs: uses: codehaus-plexus/.github/.github/workflows/maven.yml@master with: jdk-fast-fail-build: '11' - jdk-matrix: '["11", "17"]' + jdk-matrix: '["11", "17", "18", "19-ea"]' jdk-distribution-matrix: '["zulu", "temurin", "microsoft", "liberica"]' os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]' maven_args: 'install javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx' From 1bb731e2caa53dbdb19615e96fdcea2337fd2eaa Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 20 May 2022 09:46:46 +1000 Subject: [PATCH 2/3] Update maven.yml --- .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 27d38495..e999ab5b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -28,7 +28,8 @@ jobs: with: jdk-fast-fail-build: '11' jdk-matrix: '["11", "17", "18", "19-ea"]' - jdk-distribution-matrix: '["zulu", "temurin", "microsoft", "liberica"]' + jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]' os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]' + matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]' maven_args: 'install javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx' From 44994a6bc30b76ad3c76f87b579eb90976c54780 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 20 May 2022 11:34:23 +1000 Subject: [PATCH 3/3] add some exclusions --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e999ab5b..16aca269 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -30,6 +30,6 @@ jobs: jdk-matrix: '["11", "17", "18", "19-ea"]' jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]' os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]' - matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]' + matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"},{ "jdk": "18", "distribution": "microsoft"},{ "jdk": "19-ea", "distribution": "microsoft"}]' maven_args: 'install javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx'