You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/07/04 19:09:57 UTC

[maven-gh-actions-shared] branch maven-matrix updated (9d5b30f -> 1c7220b)

This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a change to branch maven-matrix
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git


 discard 9d5b30f  Matrix build with many Maven versions
     new 1c7220b  Matrix build with many Maven versions

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9d5b30f)
            \
             N -- N -- N   refs/heads/maven-matrix (1c7220b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven-verify.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[maven-gh-actions-shared] 01/01: Matrix build with many Maven versions

Posted by sj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch maven-matrix
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git

commit 1c7220bf13f47577d0158a1c4aff0c1079d989c2
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Mon Jul 4 21:06:47 2022 +0200

    Matrix build with many Maven versions
    
    additionally
     - remove not used verify-site-goal
     - rename maven_args to maven-args
---
 .github/workflows/maven-verify-test.yml |  1 +
 .github/workflows/maven-verify.yml      | 70 +++++++++++++++++----------------
 2 files changed, 37 insertions(+), 34 deletions(-)

diff --git a/.github/workflows/maven-verify-test.yml b/.github/workflows/maven-verify-test.yml
index 5c34b24..1b078e6 100644
--- a/.github/workflows/maven-verify-test.yml
+++ b/.github/workflows/maven-verify-test.yml
@@ -32,3 +32,4 @@ jobs:
       ff-goal: test
       verify-goal: clean install
       verify-fail-fast: false
+      maven-matrix: '[ "3.2.5", "3.8.6" ]'
diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml
index 1a473da..ac4f7e9 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -20,54 +20,54 @@ name: Verify
 on:
   workflow_call:
     inputs:
-      maven_args:
+      maven-args:
         description: The arguments to pass to all Maven commands when building the code
         required: false
         default: '-D"invoker.streamLogsOnFailures"'
         type: string
 
-      maven_version:
-        description: The Maven version used for builds
-        required: false
-        default: '3.8.6'
-        type: string
-
       os-matrix:
-        description: 'os matrix as json array'
+        description: os matrix as json array
         required: false
         default: '[ "ubuntu-latest", "windows-latest", "macOS-latest" ]'
         type: string
 
       jdk-matrix:
-        description: 'jdk matrix as json array'
+        description: jdk matrix as json array
         required: false
         default: '[ "8", "11", "17" ]'
         type: string
 
+      jdk-distribution-matrix:
+        description: jdk distribution matrix
+        required: false
+        default: '[ "temurin" ]'
+        type: string
+
+      maven-matrix:
+        description: The Maven version matrix as json array
+        required: false
+        default: '[ "3.8.6" ]'
+        type: string
+
       matrix-exclude:
-        description: 'exclude for matrix as json'
+        description: exclude for matrix as json
         required: false
         default: '[]'
         type: string
 
       max-parallel:
-        description: 'max parallel jobs'
+        description: max parallel jobs
         required: false
         default: 100
         type: number
 
       timeout-minutes:
-        description: 'timeout-minutes used by the builds (defaults to 360)'
+        description: timeout-minutes used by the builds (defaults to 360)
         required: false
         default: 360
         type: number
 
-      jdk-distribution-matrix:
-        description: "jdk distribution matrix"
-        required: false
-        default: '[ "temurin" ]'
-        type: string
-
       # fail fast job setup
       ff-run:
         description: Determines should fail-fast-build run at all
@@ -81,6 +81,12 @@ on:
         default: 'ubuntu-latest'
         type: string
 
+      ff-maven:
+        description: The Maven version used during fail-fast-build job
+        required: false
+        default: '3.8.6'
+        type: string
+
       ff-jdk:
         description: The jdk version used during fail-fast-build job
         required: false
@@ -112,7 +118,7 @@ on:
         type: string
 
       ff-timeout-minutes:
-        description: 'timeout-minutes used by fail-fast-build jobs (defaults to 360)'
+        description: timeout-minutes used by fail-fast-build jobs (defaults to 360)
         required: false
         default: 360
         type: number
@@ -123,12 +129,6 @@ on:
         default: '-P run-its verify'
         type: string
 
-      verify-site-goal:
-        description: The Maven goal used by verfy jobs to build site
-        required: false
-        default: '-DskipTests -P reporting site'
-        type: string
-
       verify-fail-fast:
         description: Determinate if verification matrix should fail fast
         required: false
@@ -155,7 +155,7 @@ jobs:
 
   # verify build on one node - before matrix will start
   fail-fast-build:
-    name: ${{ inputs.ff-os }} jdk-${{ inputs.ff-jdk }}-${{ inputs.ff-jdk-distribution }}
+    name: ${{ inputs.ff-os }} jdk-${{ inputs.ff-jdk }}-${{ inputs.ff-jdk-distribution }} ${{ inputs.ff-maven }}
     runs-on: ${{ inputs.ff-os }}
     timeout-minutes: ${{ inputs.ff-timeout-minutes }}
     # execute on any push or pull request from forked repo
@@ -179,13 +179,14 @@ jobs:
           cache: 'maven'
 
       - name: Set up Maven
-        run: mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=${{ inputs.maven_version }}"
+        run:
+          mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=${{ inputs.ff-maven }}"
 
       - name: Build with Maven
-        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven_args }} ${{ inputs.ff-goal }}
+        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven-args }} ${{ inputs.ff-goal }}
 
       - name: Build Maven Site
-        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven_args }} ${{ inputs.ff-site-goal }}
+        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven-args }} ${{ inputs.ff-site-goal }}
         if: inputs.ff-site-run
 
       - name: Upload Maven Site
@@ -209,7 +210,7 @@ jobs:
 
   verify:
     needs: fail-fast-build
-    name: ${{ matrix.os }} jdk-${{ matrix.jdk }}-${{ matrix.distribution }}
+    name: ${{ matrix.os }} jdk-${{ matrix.jdk }}-${{ matrix.distribution }} ${{ matrix.maven }}
     timeout-minutes: ${{ inputs.timeout-minutes }}
     runs-on: ${{ matrix.os }}
     if: always() && ( !inputs.ff-run || needs.fail-fast-build.result == 'success' )
@@ -220,6 +221,7 @@ jobs:
         os: ${{ fromJSON( inputs.os-matrix ) }}
         jdk: ${{ fromJSON( inputs.jdk-matrix ) }}
         distribution: ${{ fromJSON( inputs.jdk-distribution-matrix ) }}
+        maven: ${{ fromJSON( inputs.maven-matrix ) }}
         exclude: ${{ fromJSON( inputs.matrix-exclude ) }}
       max-parallel: ${{ inputs.max-parallel }}
 
@@ -230,8 +232,8 @@ jobs:
           matrix.os != inputs.ff-os ||
           matrix.jdk != inputs.ff-jdk ||
           matrix.distribution != inputs.ff-jdk-distribution ||
-          inputs.verify-goal != inputs.ff-goal ||
-          inputs.verify-site-goal != inputs.ff-site-goal
+          matrix.maven != inputs.ff-maven ||
+          inputs.verify-goal != inputs.ff-goal
         run: echo ok
 
       # Some projects (like Maven SCM) need the command-line tools for all SCMs installed.
@@ -267,11 +269,11 @@ jobs:
 
       - name: Set up Maven
         if: steps.should-run.conclusion == 'success'
-        run: mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=${{ inputs.maven_version }}"
+        run: mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=${{ matrix.maven }}"
 
       - name: Build with Maven
         if: steps.should-run.conclusion == 'success'
-        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven_args }} ${{ inputs.verify-goal }}
+        run: ./mvnw --errors --batch-mode --show-version ${{ inputs.maven-args }} ${{ inputs.verify-goal }}
 
       - name: Upload artifact on failure
         uses: actions/upload-artifact@v3