From a5da03e282dc3c5957d9aaaa5b109dde542f44f2 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Tue, 12 Mar 2024 02:51:42 +0800 Subject: [PATCH] [KYUUBI #6164] Limit max parallel for each GitHub Actions workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :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 Signed-off-by: Cheng Pan --- .github/workflows/master.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 262bd8c7302..73ccafcd399 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" ]