Skip to content

Commit 172c752

Browse files
authored
Revert "Disable watchOS pod lib lint tests (#10315)" (#10881)
This reverts commit f5aad32.
1 parent 6bb3e3e commit 172c752

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
lines changed

.github/workflows/abtesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: macos-12
2424
strategy:
2525
matrix:
26-
target: [ios, tvos, macos]
26+
target: [ios, tvos, macos, watchos]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- uses: ruby/setup-ruby@v1

.github/workflows/auth.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
POD_LIB_LINT_ONLY: 1
2828
strategy:
2929
matrix:
30-
target: [ios, tvos, macos]
30+
target: [ios, tvos, macos, watchos]
3131
steps:
3232
- uses: actions/checkout@v3
3333
- uses: ruby/setup-ruby@v1
@@ -166,8 +166,8 @@ jobs:
166166
runs-on: macos-12
167167
strategy:
168168
matrix:
169-
# The macos and tvos tests can hang.
170-
target: [ios, tvos --skip-tests, macos --skip-tests]
169+
# The macos and tvos tests can hang, and watchOS doesn't have tests.
170+
target: [ios, tvos --skip-tests, macos --skip-tests, watchos --skip-tests]
171171
flags: [
172172
'--use-static-frameworks'
173173
]

.github/workflows/crashlytics.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
strategy:
2828
matrix:
29-
target: [ios, tvos, macos]
29+
target: [ios, tvos, macos, watchos --skip-tests]
3030
steps:
3131
- uses: actions/checkout@v3
3232
- uses: ruby/setup-ruby@v1
@@ -147,7 +147,8 @@ jobs:
147147
runs-on: macos-12
148148
strategy:
149149
matrix:
150-
target: [ios, tvos, macos]
150+
# Disable watchos because it does not support XCTest.
151+
target: [ios, tvos, macos, watchos --skip-tests]
151152
flags: [
152153
'--use-static-frameworks'
153154
]

.github/workflows/database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119

120120
strategy:
121121
matrix:
122-
target: [ios, tvos, macos]
122+
target: [ios, tvos, macos, watchos]
123123
steps:
124124
- uses: actions/checkout@v3
125125
- uses: ruby/setup-ruby@v1

.github/workflows/functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: macos-12
3131
strategy:
3232
matrix:
33-
target: [ios, tvos, macos]
33+
target: [ios, tvos, macos, watchos]
3434
steps:
3535
- uses: actions/checkout@v3
3636
- uses: ruby/setup-ruby@v1

.github/workflows/messaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
strategy:
5959
matrix:
60-
target: [ios, tvos, macos --skip-tests] # skipping tests on mac because of keychain access
60+
target: [ios, tvos, macos --skip-tests, watchos --skip-tests] # skipping tests on mac because of keychain access
6161
steps:
6262
- uses: actions/checkout@v3
6363
- uses: ruby/setup-ruby@v1
@@ -171,7 +171,7 @@ jobs:
171171
runs-on: macos-12
172172
strategy:
173173
matrix:
174-
target: [ios, tvos, macos --skip-tests]
174+
target: [ios, tvos, macos --skip-tests, watchos --skip-tests]
175175
flags: [
176176
'--use-modular-headers'
177177
]

.github/workflows/remoteconfig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
strategy:
6161
matrix:
62-
target: [ios, tvos, macos]
62+
target: [ios, tvos, macos, watchos]
6363
podspec: [FirebaseRemoteConfig.podspec, FirebaseRemoteConfigSwift.podspec --skip-tests]
6464
steps:
6565
- uses: actions/checkout@v3

.github/workflows/sessions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
target: [ios, tvos, macos]
28+
target: [ios, tvos, macos, watchos --skip-tests]
2929
steps:
3030
- uses: actions/checkout@v3
3131
- uses: ruby/setup-ruby@v1

.github/workflows/shared-swift.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: macos-12
2424
strategy:
2525
matrix:
26-
target: [ios, tvos, macos]
26+
target: [ios, tvos, macos, watchos]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- uses: ruby/setup-ruby@v1

.github/workflows/storage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
runs-on: macos-12
132132
strategy:
133133
matrix:
134-
target: [ios, tvos, macos]
134+
target: [ios, tvos, macos, watchos]
135135
steps:
136136
- uses: actions/checkout@v3
137137
- uses: ruby/setup-ruby@v1
@@ -147,7 +147,7 @@ jobs:
147147
runs-on: macos-12
148148
strategy:
149149
matrix:
150-
target: [ios, tvos, macos]
150+
target: [ios, tvos, macos, watchos]
151151
needs: pod-lib-lint
152152
steps:
153153
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)