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

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new e478cd2  [SPARK-55425] Set `strategy.max-parrallel` to 20 for all 
GitHub Action jobs
e478cd2 is described below

commit e478cd2cd9f9dc543acd8f53a25573dcf1a642e9
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sat Feb 7 22:32:47 2026 -0800

    [SPARK-55425] Set `strategy.max-parrallel` to 20 for all GitHub Action jobs
    
    ### What changes were proposed in this pull request?
    
    This PR aims to set `strategy.max-parrallel` to 20 for all GitHub Action 
jobs.
    
    ### Why are the changes needed?
    
    To be consistent with Apache Spark main repository.
    - https://github.com/apache/spark/pull/54204
    
    Here is `GitHub Action` syntax.
    - 
https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#jobsjob_idstrategymax-parallel
    
    <img width="762" height="112" alt="Screenshot 2026-02-07 at 21 09 02" 
src="https://github.com/user-attachments/assets/770d1b81-390b-49d1-8518-70cb20eb93af";
 />
    
    ### Does this PR introduce _any_ user-facing change?
    
    No Apache Spark behavior change.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    Generated-by: `Opus 4.5` on `Claude Code`
    
    Closes #493 from dongjoon-hyun/SPARK-55425.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .github/workflows/build_and_test.yml             | 3 +++
 .github/workflows/publish_snapshot_chart.yml     | 1 +
 .github/workflows/publish_snapshot_dockerhub.yml | 1 +
 3 files changed, 5 insertions(+)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index 090c157..23e310d 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -33,6 +33,7 @@ jobs:
     timeout-minutes: 20
     strategy:
       fail-fast: false
+      max-parallel: 20
       matrix:
         os: [ 'ubuntu-latest', 'ubuntu-24.04-arm' ]
         java-version: [ 17, 21, 25 ]
@@ -71,6 +72,7 @@ jobs:
     timeout-minutes: 20
     strategy:
       fail-fast: false
+      max-parallel: 20
       matrix:
         kubernetes-version:
           - "1.33.0"
@@ -183,6 +185,7 @@ jobs:
     timeout-minutes: 20
     strategy:
       fail-fast: false
+      max-parallel: 20
       matrix:
         kubernetes-version:
           - "1.35.0"
diff --git a/.github/workflows/publish_snapshot_chart.yml 
b/.github/workflows/publish_snapshot_chart.yml
index b48f9bc..885e92d 100644
--- a/.github/workflows/publish_snapshot_chart.yml
+++ b/.github/workflows/publish_snapshot_chart.yml
@@ -18,6 +18,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       fail-fast: false
+      max-parallel: 20
       matrix:
         # keep in sync with default value of workflow_dispatch input 'branch'
         branch: ${{ fromJSON( inputs.branch || '["main"]' ) }}
diff --git a/.github/workflows/publish_snapshot_dockerhub.yml 
b/.github/workflows/publish_snapshot_dockerhub.yml
index 0d6861e..1e476c9 100644
--- a/.github/workflows/publish_snapshot_dockerhub.yml
+++ b/.github/workflows/publish_snapshot_dockerhub.yml
@@ -18,6 +18,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       fail-fast: false
+      max-parallel: 20
       matrix:
         # keep in sync with default value of workflow_dispatch input 'branch'
         branch: ${{ fromJSON( inputs.branch || '["main"]' ) }}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to