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/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 3453a6d92 ORC-2085: Set `strategy.max-parrallel` to 20 for all GitHub
Action jobs
3453a6d92 is described below
commit 3453a6d929ffa50e9e12688167a03cbe29ca2153
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sat Feb 7 22:42:17 2026 -0800
ORC-2085: 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 guarantee the max parallelism meets ASF policy for the future.
### 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 #2524 from dongjoon-hyun/ORC-2085.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 6 ++++++
.github/workflows/sanitizer_test.yml | 1 +
2 files changed, 7 insertions(+)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 4e98b9732..037617cde 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -44,6 +44,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
os:
- debian12
@@ -66,6 +67,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
os:
- ubuntu-24.04
@@ -125,6 +127,7 @@ jobs:
runs-on: windows-2025
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
simd:
- General
@@ -178,6 +181,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
os:
- ubuntu-22.04
@@ -270,6 +274,7 @@ jobs:
needs: [cpp-linter]
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
version: [15, 26]
runs-on: macos-${{ matrix.version }}
@@ -289,6 +294,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
os:
- ubuntu-22.04
diff --git a/.github/workflows/sanitizer_test.yml
b/.github/workflows/sanitizer_test.yml
index ca1efa546..18dbaf9e6 100644
--- a/.github/workflows/sanitizer_test.yml
+++ b/.github/workflows/sanitizer_test.yml
@@ -35,6 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
+ max-parallel: 20
matrix:
compiler: [gcc, clang]
include: