Skip to content

Commit

Permalink
Workaround GHA download overload crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Sep 19, 2024
1 parent f4b722b commit 459eb3b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
strategy:
matrix:
os: [macos-14]
target: [iOS, tvOS, macOS, catalyst, visionOS]
xcode: [Xcode_15.2, Xcode_15.4, Xcode_16_Release_Candidate]
# Target matrix commented to workaround GHA download overload crashes
# target: [iOS, tvOS, macOS, catalyst, visionOS]
xcode: [Xcode_15.2, Xcode_16_Release_Candidate]
runs-on: ${{ matrix.os }}
env:
FIREBASE_MAIN: 1
Expand All @@ -44,4 +45,12 @@ jobs:
- name: Initialize xcodebuild
run: xcodebuild -list
- name: iOS Unit Tests
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect ${{ matrix.target }} spm
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect iOS spm
- name: tvOS Unit Tests
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect tvOS spm
- name: macOS Unit Tests
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect macOS spm
- name: visionOS Unit Tests
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect visionOS spm
- name: catalyst Unit Tests
run: scripts/third_party/travis/retry.sh scripts/build.sh FirebaseDataConnect catalyst spm

0 comments on commit 459eb3b

Please sign in to comment.