This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-sbt.git
The following commit(s) were added to refs/heads/main by this push:
new eeb8aa4 Set max-parallel for matrix GitHub action jobs
eeb8aa4 is described below
commit eeb8aa42cc67ecb4da388804844993b17947c317
Author: Steve Lawrence <[email protected]>
AuthorDate: Tue Feb 3 15:29:14 2026 -0500
Set max-parallel for matrix GitHub action jobs
In accordance with ASF policy, set job.strategy.max-parallel to the
recommended 15 or less for jobs that specify a matrix. The value is set
to the number of expected jobs for the matrix, with a maximum of 15.
DAFFODIL-3069
---
.github/workflows/main.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index b6445c1..a027c15 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -37,6 +37,7 @@ jobs:
name: Java ${{ matrix.java_version }}, Scala ${{ matrix.scala_version }},
${{ matrix.os }}
strategy:
fail-fast: false
+ max-parallel: 5
matrix:
java_distribution: [ temurin ]
java_version: [ 17, 21 ]
@@ -103,6 +104,7 @@ jobs:
name: Lint Checks
strategy:
fail-fast: false
+ max-parallel: 1
matrix:
java_distribution: [ temurin ]
java_version: [ 17 ]