Skip to content

Commit 3453a6d

Browse files
committed
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 <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent b4b2782 commit 3453a6d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
fail-fast: false
47+
max-parallel: 20
4748
matrix:
4849
os:
4950
- debian12
@@ -66,6 +67,7 @@ jobs:
6667
runs-on: ${{ matrix.os }}
6768
strategy:
6869
fail-fast: false
70+
max-parallel: 20
6971
matrix:
7072
os:
7173
- ubuntu-24.04
@@ -125,6 +127,7 @@ jobs:
125127
runs-on: windows-2025
126128
strategy:
127129
fail-fast: false
130+
max-parallel: 20
128131
matrix:
129132
simd:
130133
- General
@@ -178,6 +181,7 @@ jobs:
178181
runs-on: ${{ matrix.os }}
179182
strategy:
180183
fail-fast: false
184+
max-parallel: 20
181185
matrix:
182186
os:
183187
- ubuntu-22.04
@@ -270,6 +274,7 @@ jobs:
270274
needs: [cpp-linter]
271275
strategy:
272276
fail-fast: false
277+
max-parallel: 20
273278
matrix:
274279
version: [15, 26]
275280
runs-on: macos-${{ matrix.version }}
@@ -289,6 +294,7 @@ jobs:
289294
runs-on: ${{ matrix.os }}
290295
strategy:
291296
fail-fast: false
297+
max-parallel: 20
292298
matrix:
293299
os:
294300
- ubuntu-22.04

.github/workflows/sanitizer_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
fail-fast: false
38+
max-parallel: 20
3839
matrix:
3940
compiler: [gcc, clang]
4041
include:

0 commit comments

Comments
 (0)