This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch v3
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
The following commit(s) were added to refs/heads/v3 by this push:
new e79b3fb Add option to include ad-hoc jdks to testing matrix
e79b3fb is described below
commit e79b3fbc6da205b7f9a923765e945694d1dafa99
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Mon Oct 2 17:15:09 2023 +0200
Add option to include ad-hoc jdks to testing matrix
---
.github/workflows/maven-verify.yml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/.github/workflows/maven-verify.yml
b/.github/workflows/maven-verify.yml
index f38f5c0..e9b7dcc 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -50,6 +50,12 @@ on:
default: '[ "3.9.4" ]'
type: string
+ matrix-include:
+ description: include for matrix as json
+ required: false
+ default: '[]'
+ type: string
+
matrix-exclude:
description: exclude for matrix as json
required: false
@@ -225,6 +231,7 @@ jobs:
jdk: ${{ fromJSON( inputs.jdk-matrix ) }}
distribution: ${{ fromJSON( inputs.jdk-distribution-matrix ) }}
maven: ${{ fromJSON( inputs.maven-matrix ) }}
+ include: ${{ fromJSON( inputs.matrix-include ) }}
exclude: ${{ fromJSON( inputs.matrix-exclude ) }}
max-parallel: ${{ inputs.max-parallel }}