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.git
The following commit(s) were added to refs/heads/main by this push:
new 498c0b43f Set max-parallel for matrix GitHub action jobs
498c0b43f is described below
commit 498c0b43f37814fbf077fa686c7cb1f4cc9a6177
Author: Steve Lawrence <[email protected]>
AuthorDate: Tue Feb 3 15:22:59 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 ab364f554..08e03d770 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: 7
matrix:
java_distribution: [ temurin ]
java_version: [ 17, 21, 25 ]
@@ -236,6 +237,7 @@ jobs:
name: Lint Checks
strategy:
fail-fast: false
+ max-parallel: 1
matrix:
java_distribution: [ temurin ]
java_version: [ 17 ]