From f4272a36b88f78d4efc8843b91192cfd1c686dab Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 4 Aug 2022 13:06:04 +1000 Subject: [PATCH 1/3] use Apache Maven shared gha Signed-off-by: Olivier Lamy --- .github/workflows/maven.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d0724b86..e3293111 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -1,3 +1,5 @@ + + # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -22,4 +24,10 @@ on: [push, pull_request] jobs: build: name: Verify - uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v2 + uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 + with: + jdk-matrix: ["8"] + ff-jdk: "8" + ff-maven: "3.8.6" # Maven version for fail-fast-build + maven-matrix: '[ "3.2.5", "3.8.6" ]' # Maven versions matrix for verify builds + From 3ff46b86156506dac87f44204c8087d594b649ca Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 4 Aug 2022 13:07:59 +1000 Subject: [PATCH 2/3] fix matrix: Signed-off-by: Olivier Lamy --- .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 e3293111..cd52cb74 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,7 +26,8 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: - jdk-matrix: ["8"] + jdk-matrix: ["8", "11", "17"] + jdk-distribution-matrix: ["temurin", "zulu"] ff-jdk: "8" ff-maven: "3.8.6" # Maven version for fail-fast-build maven-matrix: '[ "3.2.5", "3.8.6" ]' # Maven versions matrix for verify builds From 5ad4456a6b04289f700cfed042a396e1aaf5b287 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 4 Aug 2022 13:13:34 +1000 Subject: [PATCH 3/3] escape... Signed-off-by: Olivier Lamy --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index cd52cb74..ed339c17 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,8 +26,8 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: - jdk-matrix: ["8", "11", "17"] - jdk-distribution-matrix: ["temurin", "zulu"] + jdk-matrix: '["8", "11", "17"]' + jdk-distribution-matrix: '["temurin", "zulu"]' ff-jdk: "8" ff-maven: "3.8.6" # Maven version for fail-fast-build maven-matrix: '[ "3.2.5", "3.8.6" ]' # Maven versions matrix for verify builds