Skip to content

Commit 854dad9

Browse files
authored
Reduce nightly flakes (#12116)
1 parent 7605a18 commit 854dad9

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/auth.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@ jobs:
3030
include:
3131
- os: macos-12
3232
xcode: Xcode_14.2
33+
tests:
34+
# Flaky tests on CI
3335
- os: macos-13
3436
xcode: Xcode_15.0.1
37+
tests: --skip-tests
3538
runs-on: ${{ matrix.os }}
3639
steps:
3740
- uses: actions/checkout@v3
@@ -44,7 +47,8 @@ jobs:
4447
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
4548
- name: Build and test
4649
run: |
47-
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} --platforms=${{ matrix.target }}
50+
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} --platforms=${{ matrix.target }} \
51+
${{ matrix.tests }}
4852
4953
integration-tests:
5054
# Don't run on private repo unless it is a PR.

.github/workflows/crashlytics.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ jobs:
2929
include:
3030
- os: macos-12
3131
xcode: Xcode_14.2
32+
tests:
33+
# Flaky tests on CI
3234
- os: macos-13
3335
xcode: Xcode_15.0.1
36+
tests: --skip-tests
3437
runs-on: ${{ matrix.os }}
3538
steps:
3639
- uses: actions/checkout@v3
@@ -41,7 +44,8 @@ jobs:
4144
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
4245
- name: Build and test
4346
run: |
44-
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCrashlytics.podspec --platforms=${{ matrix.target }}
47+
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCrashlytics.podspec --platforms=${{ matrix.target }} \
48+
${{ matrix.tests }}
4549
4650
spm:
4751
# Don't run on private repo unless it is a PR.

.github/workflows/storage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,10 @@ jobs:
176176
include:
177177
- os: macos-12
178178
xcode: Xcode_14.2
179+
tests: --test-specs=unit
179180
- os: macos-13
180181
xcode: Xcode_15.0.1
182+
tests: --skip-tests
181183
runs-on: ${{ matrix.os }}
182184
steps:
183185
- uses: actions/checkout@v3
@@ -190,7 +192,8 @@ jobs:
190192
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
191193
- name: Build and test
192194
run: |
193-
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseStorage.podspec --test-specs=unit --platforms=${{ matrix.target }}
195+
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseStorage.podspec ${{ matrix.tests }} \
196+
--platforms=${{ matrix.target }}
194197
195198
storage-cron-only:
196199
# Don't run on private repo.

0 commit comments

Comments
 (0)