This is an automated email from the ASF dual-hosted git repository. chengpan pushed a commit to branch branch-1.8 in repository https://gitbox.apache.org/repos/asf/kyuubi.git
commit a233ba7616b566f5a7555f39152f3e62b91adb8e 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 e4545cbde..ed1d7cc80 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 @@ -225,6 +226,7 @@ jobs: runs-on: ubuntu-22.04 strategy: fail-fast: false + max-parallel: 1 matrix: java: - 8 @@ -289,6 +291,7 @@ jobs: runs-on: ubuntu-22.04 strategy: fail-fast: false + max-parallel: 1 matrix: java: - 8 @@ -341,6 +344,7 @@ jobs: runs-on: ubuntu-22.04 strategy: fail-fast: false + max-parallel: 1 matrix: java: - 8 @@ -381,6 +385,7 @@ jobs: runs-on: ubuntu-22.04 strategy: fail-fast: false + max-parallel: 1 matrix: java: - 8 @@ -567,6 +572,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" ]
