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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new a5da03e28 [KYUUBI #6164] Limit max parallel for each GitHub Actions 
workflow
a5da03e28 is described below

commit a5da03e282dc3c5957d9aaaa5b109dde542f44f2
Author: Cheng Pan <[email protected]>
AuthorDate: Tue Mar 12 02:51:42 2024 +0800

    [KYUUBI #6164] Limit max parallel for each GitHub Actions workflow
    
    # :mag: Description
    
    We are asked by ASF Infra to set a max-parallel limit for each workflow.
    
    ## Types of changes :bookmark:
    
    - [ ] Bugfix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
    
    ## Test Plan ๐Ÿงช
    
    Let's see the CI results.
    
    ---
    
    # Checklist ๐Ÿ“
    
    - [x] This patch was not authored or co-authored using [Generative 
Tooling](https://www.apache.org/legal/generative-tooling.html)
    
    **Be nice. Be informative.**
    
    Closes #6164 from pan3793/max-parallel.
    
    Closes #6164
    
    beb528159 [Cheng Pan] Limit max parallel for each GitHub Actions workflow
    
    Authored-by: Cheng Pan <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 .github/workflows/master.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 262bd8c73..73ccafcd3 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -42,6 +42,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java:
           - 8
@@ -180,6 +181,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java:
           - 8
@@ -245,6 +247,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java:
           - 8
@@ -300,6 +303,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java:
           - 8
@@ -341,6 +345,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java:
           - 8
@@ -528,6 +533,7 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
+      max-parallel: 1
       matrix:
         java: [ 8 ]
         zookeeper: ["3.4", "3.5", "3.6", "3.7" ]

Reply via email to