Skip to content

Commit 3ae46c0

Browse files
authored
[Infra] Limit concurrent matrix jobs in 'spm' jobs (#13679)
1 parent c4e1088 commit 3ae46c0

20 files changed

+21
-0
lines changed

.github/workflows/abtesting.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
# Don't run on private repo unless it is a PR.
5151
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
5252
strategy:
53+
max-parallel: 1
5354
matrix:
5455
target: [iOS, tvOS, macOS, catalyst, watchOS]
5556
os: [macos-13, macos-14]

.github/workflows/appdistribution.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4747

4848
strategy:
49+
max-parallel: 1
4950
matrix:
5051
os: [macos-14, macos-13]
5152
include:

.github/workflows/auth.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
# Don't run on private repo unless it is a PR.
104104
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
105105
strategy:
106+
max-parallel: 1
106107
matrix:
107108
target: [iOS, tvOS, macOS, catalyst, watchOS]
108109
os: [macos-13, macos-14]

.github/workflows/core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
# Don't run on private repo unless it is a PR.
4444
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4545
strategy:
46+
max-parallel: 1
4647
matrix:
4748
target: [iOS, tvOS, macOS, catalyst, watchOS]
4849
os: [macos-13, macos-14]

.github/workflows/core_internal.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
# Don't run on private repo unless it is a PR.
4040
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4141
strategy:
42+
max-parallel: 1
4243
matrix:
4344
target: [iOS, tvOS, macOS, catalyst, watchOS]
4445
os: [macos-13, macos-14]

.github/workflows/crashlytics.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
# Don't run on private repo unless it is a PR.
5858
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
5959
strategy:
60+
max-parallel: 1
6061
matrix:
6162
target: [iOS, tvOS, macOS, catalyst, watchOS]
6263
os: [macos-13, macos-14]

.github/workflows/database.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868
# Don't run on private repo unless it is a PR.
6969
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
7070
strategy:
71+
max-parallel: 1
7172
matrix:
7273
target: [iOS, tvOS, macOS, catalyst, watchOS]
7374
os: [macos-13, macos-14]

.github/workflows/dynamiclinks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
# Don't run on private repo unless it is a PR.
4444
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4545
strategy:
46+
max-parallel: 1
4647
matrix:
4748
os: [macos-14, macos-13]
4849
include:

.github/workflows/firebase_app_check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ jobs:
100100
# Don't run on private repo unless it is a PR.
101101
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
102102
strategy:
103+
max-parallel: 1
103104
matrix:
104105
target: [iOS, tvOS, macOS, catalyst, watchOS]
105106
os: [macos-14, macos-13]

.github/workflows/functions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
# Don't run on private repo unless it is a PR.
5757
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
5858
strategy:
59+
max-parallel: 1
5960
matrix:
6061
os: [macos-14]
6162
include:

0 commit comments

Comments
 (0)