Skip to content

Commit a6b3086

Browse files
Copilotkevinjqliu
andcommitted
Remove unnecessary max-parallel settings from jobs without matrix
Co-authored-by: kevinjqliu <9057843+kevinjqliu@users.noreply.github.com>
1 parent adf8871 commit a6b3086

File tree

10 files changed

+0
-32
lines changed

10 files changed

+0
-32
lines changed

.github/workflows/check-md-link.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ on:
3535
jobs:
3636
markdown-link-check:
3737
runs-on: ubuntu-latest
38-
strategy:
39-
max-parallel: 15
4038
steps:
4139
- uses: actions/checkout@master
4240
- uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225

.github/workflows/license_check.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ on: pull_request
2323
jobs:
2424
rat:
2525
runs-on: ubuntu-latest
26-
strategy:
27-
max-parallel: 15
2826
steps:
2927
- uses: actions/checkout@v6
3028
- run: dev/check-license

.github/workflows/nightly-pypi-build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828
set-version:
2929
if: github.repository == 'apache/iceberg-python' # Only run for apache repo
3030
runs-on: ubuntu-latest
31-
strategy:
32-
max-parallel: 15
3331
outputs:
3432
VERSION: ${{ steps.set-version.outputs.VERSION }}
3533
steps:
@@ -64,8 +62,6 @@ jobs:
6462
needs:
6563
- nightly-build
6664
runs-on: ubuntu-latest
67-
strategy:
68-
max-parallel: 15
6965
environment:
7066
name: testpypi
7167
url: https://test.pypi.org/p/pyiceberg

.github/workflows/pypi-build-artifacts.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ jobs:
8888

8989
pypi-merge-artifacts:
9090
runs-on: ubuntu-latest
91-
strategy:
92-
max-parallel: 15
9391
needs:
9492
- pypi-build-artifacts
9593
steps:

.github/workflows/python-ci-docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ concurrency:
3333
jobs:
3434
docs:
3535
runs-on: ubuntu-latest
36-
strategy:
37-
max-parallel: 15
3836

3937
steps:
4038
- uses: actions/checkout@v6

.github/workflows/python-ci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ jobs:
7373

7474
integration-test:
7575
runs-on: ubuntu-latest
76-
strategy:
77-
max-parallel: 15
7876
steps:
7977
- uses: actions/checkout@v6
8078
- uses: actions/setup-python@v6
@@ -102,8 +100,6 @@ jobs:
102100

103101
integration-test-s3:
104102
runs-on: ubuntu-latest
105-
strategy:
106-
max-parallel: 15
107103
steps:
108104
- uses: actions/checkout@v6
109105
- uses: actions/setup-python@v6
@@ -131,8 +127,6 @@ jobs:
131127

132128
integration-test-adls:
133129
runs-on: ubuntu-latest
134-
strategy:
135-
max-parallel: 15
136130
steps:
137131
- uses: actions/checkout@v6
138132
- uses: actions/setup-python@v6
@@ -160,8 +154,6 @@ jobs:
160154

161155
integration-test-gcs:
162156
runs-on: ubuntu-latest
163-
strategy:
164-
max-parallel: 15
165157
steps:
166158
- uses: actions/checkout@v6
167159
- uses: actions/setup-python@v6
@@ -189,8 +181,6 @@ jobs:
189181

190182
integration-coverage-report:
191183
runs-on: ubuntu-latest
192-
strategy:
193-
max-parallel: 15
194184
needs: [integration-test, integration-test-s3, integration-test-adls, integration-test-gcs]
195185
steps:
196186
- uses: actions/checkout@v6

.github/workflows/python-release-docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ concurrency:
2828
jobs:
2929
docs:
3030
runs-on: ubuntu-latest
31-
strategy:
32-
max-parallel: 15
3331

3432
steps:
3533
- uses: actions/checkout@v6

.github/workflows/python-release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ on:
3939
jobs:
4040
validate-inputs:
4141
runs-on: ubuntu-latest
42-
strategy:
43-
max-parallel: 15
4442
outputs:
4543
VERSION: ${{ steps.validate-inputs.outputs.VERSION }} # e.g. 0.8.0
4644
RC: ${{ steps.validate-inputs.outputs.RC }} # e.g. 1
@@ -88,8 +86,6 @@ jobs:
8886
8987
validate-library-version:
9088
runs-on: ubuntu-latest
91-
strategy:
92-
max-parallel: 15
9389
needs:
9490
- validate-inputs
9591
steps:

.github/workflows/stale.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
stale:
3131
if: github.repository_owner == 'apache'
3232
runs-on: ubuntu-latest
33-
strategy:
34-
max-parallel: 15
3533
steps:
3634
- uses: actions/stale@v10.1.1
3735
with:

.github/workflows/svn-build-artifacts.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ jobs:
8282

8383
svn-merge-artifacts:
8484
runs-on: ubuntu-latest
85-
strategy:
86-
max-parallel: 15
8785
needs:
8886
- svn-build-artifacts
8987
steps:

0 commit comments

Comments
 (0)