Skip to content

Commit 83d7c78

Browse files
authored
Update pod gen version and address GHA Catalyst failures (#5509)
1 parent 64c42f6 commit 83d7c78

File tree

13 files changed

+25
-9
lines changed

13 files changed

+25
-9
lines changed

.github/workflows/auth.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- 'FirebaseAuth**'
77
- '.github/workflows/auth.yml'
8+
- 'Gemfile'
89
schedule:
910
# Run every day at 11pm (PST) - cron uses UTC times
1011
- cron: '0 7 * * *'

.github/workflows/core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- 'FirebaseCore**'
77
- '.github/workflows/core.yml'
8+
- 'Gemfile'
89
schedule:
910
# Run every day at 11pm (PST) - cron uses UTC times
1011
- cron: '0 7 * * *'

.github/workflows/crashlytics.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- 'Crashlytics**'
77
- '.github/workflows/crashlytics.yml'
8+
- 'Gemfile'
89
schedule:
910
# Run every day at 11pm (PST) - cron uses UTC times
1011
- cron: '0 7 * * *'

.github/workflows/datatransport.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'GoogleDataTransport**'
77
- 'GoogleDataTransportCCTSupport**'
88
- '.github/workflows/datatransport.yml'
9+
- 'Gemfile'
910
schedule:
1011
# Run every day at 11pm (PST) - cron uses UTC times
1112
- cron: '0 7 * * *'
@@ -35,7 +36,8 @@ jobs:
3536
- name: Setup Bundler
3637
run: scripts/setup_bundler.sh
3738
- name: Setup project and Test Catalyst
38-
run: scripts/third_party/travis/retry.sh scripts/test_catalyst.sh ${{ matrix.pod }} test
39+
# Only build the unit tests on Catalyst. Test stopped working when GHA moved to Xcode 11.4.1.
40+
run: scripts/third_party/travis/retry.sh scripts/test_catalyst.sh ${{ matrix.pod }} build
3941

4042
watchos-testapp:
4143
runs-on: macOS-latest

.github/workflows/dynamiclinks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- 'FirebaseDynamicLinks**'
77
- '.github/workflows/dynamiclinks.yml'
8+
- 'Gemfile'
89
schedule:
910
# Run every day at 11pm (PST) - cron uses UTC times
1011
- cron: '0 7 * * *'

.github/workflows/firebasepod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- '*.podspec'
99
- 'CoreOnly/**'
1010
- '.github/workflows/firebasepod.yml'
11+
- 'Gemfile'
1112
schedule:
1213
# Run every day at 11pm (PST) - cron uses UTC times
1314
- cron: '0 7 * * *'

.github/workflows/firestore.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ on:
4545
# This workflow
4646
- '.github/workflows/firestore.yml'
4747

48+
# Rebuild on Ruby infrastructure changes.
49+
- 'Gemfile'
50+
4851
schedule:
4952
# Run every day at 11pm (PST) - cron uses UTC times
5053
- cron: '0 7 * * *'

.github/workflows/interop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 'Interop/**'
99
- '*Interop.podspec'
1010
- '.github/workflows/interop.yml'
11+
- 'Gemfile'
1112
schedule:
1213
# Run every day at 11pm (PST) - cron uses UTC times
1314
- cron: '0 7 * * *'

.github/workflows/messaging.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ name: messaging
33
on:
44
pull_request:
55
paths:
6+
# Messaging sources
67
- 'FirebaseMessaging/**'
7-
8-
#Podspec
8+
# Podspec
99
- 'FirebaseMessaging.podspec'
10-
10+
# This file
1111
- '.github/workflows/messaging.yml'
12+
# Rebuild on Ruby infrastructure changes
13+
- 'Gemfile'
1214
schedule:
1315
# Run every day at 11pm (PST) - cron uses UTC times
1416
- cron: '0 7 * * *'

.github/workflows/storage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
- 'FirebaseStorage**'
77
- '.github/workflows/storage.yml'
88
- 'scripts/**'
9+
# Rebuild on Ruby infrastructure changes.
10+
- 'Gemfile'
911
schedule:
1012
# Run every day at 11pm (PST) - cron uses UTC times
1113
- cron: '0 7 * * *'
@@ -35,8 +37,8 @@ jobs:
3537
- name: Setup Bundler
3638
run: scripts/setup_bundler.sh
3739
- name: Setup project and Build for Catalyst
38-
# Only run the unit tests on Catalyst
39-
run: scripts/test_catalyst.sh FirebaseStorage test FirebaseStorage-Unit-unit
40+
# Only build the unit tests on Catalyst. Test stopped working when GHA moved to Xcode 11.4.1.
41+
run: scripts/test_catalyst.sh FirebaseStorage build FirebaseStorage-Unit-unit
4042

4143
quickstart:
4244
env:

0 commit comments

Comments
 (0)