This is an automated email from the ASF dual-hosted git repository.

liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 19fa0d755 infra: set github actions max-parallel to 15 (#2150)
19fa0d755 is described below

commit 19fa0d755dfa1096e136e5f6e121373d586fb691
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Feb 16 21:40:04 2026 -0500

    infra: set github actions max-parallel to 15 (#2150)
---
 .github/workflows/bindings_python_ci.yml     | 1 +
 .github/workflows/ci.yml                     | 4 ++++
 .github/workflows/publish.yml                | 2 +-
 .github/workflows/release_python.yml         | 1 +
 .github/workflows/release_python_nightly.yml | 1 +
 5 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/bindings_python_ci.yml 
b/.github/workflows/bindings_python_ci.yml
index ed2c03b76..1c3350221 100644
--- a/.github/workflows/bindings_python_ci.yml
+++ b/.github/workflows/bindings_python_ci.yml
@@ -75,6 +75,7 @@ jobs:
   test:
     runs-on: ${{ matrix.os }}
     strategy:
+      max-parallel: 15
       matrix:
         os:
           - ubuntu-latest
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fe7476a80..3b2220115 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -44,6 +44,7 @@ jobs:
   check:
     runs-on: ${{ matrix.os }}
     strategy:
+      max-parallel: 15
       matrix:
         os:
           - ubuntu-latest
@@ -80,6 +81,7 @@ jobs:
   build:
     runs-on: ${{ matrix.os }}
     strategy:
+      max-parallel: 15
       matrix:
         os:
           - ubuntu-latest
@@ -105,6 +107,7 @@ jobs:
   build_with_no_default_features:
     runs-on: ${{ matrix.os }}
     strategy:
+      max-parallel: 15
       matrix:
         os:
           - ubuntu-latest
@@ -125,6 +128,7 @@ jobs:
   tests:
     runs-on: ubuntu-latest
     strategy:
+      max-parallel: 15
       matrix:
         test-suite:
           - { name: "default", args: "--all-targets --all-features 
--workspace" }
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 6b4b3da84..47b3d83f5 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -31,7 +31,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       # Publish package one by one instead of flooding the registry
-      max-parallel: 1
+      max-parallel: 15
       matrix:
         # Order here is sensitive, as it will be used to determine the order 
of publishing
         package:
diff --git a/.github/workflows/release_python.yml 
b/.github/workflows/release_python.yml
index e587b50ad..2203271b3 100644
--- a/.github/workflows/release_python.yml
+++ b/.github/workflows/release_python.yml
@@ -142,6 +142,7 @@ jobs:
     runs-on: "${{ matrix.os }}"
     needs: [validate-release-tag]
     strategy:
+      max-parallel: 15
       matrix:
         include:
           - { os: windows-latest }
diff --git a/.github/workflows/release_python_nightly.yml 
b/.github/workflows/release_python_nightly.yml
index 8bdd9d100..32614b2d0 100644
--- a/.github/workflows/release_python_nightly.yml
+++ b/.github/workflows/release_python_nightly.yml
@@ -63,6 +63,7 @@ jobs:
     if: github.repository == 'apache/iceberg-rust' # Only run for apache repo
     runs-on: "${{ matrix.os }}"
     strategy:
+      max-parallel: 15
       matrix:
         include:
           - { os: windows-latest }

Reply via email to