Skip to content

Commit

Permalink
avoid new flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Nov 3, 2023
1 parent 3b65a94 commit 64e94aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/remoteconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ jobs:
include:
- os: macos-12
xcode: Xcode_14.2
test: spm
- os: macos-13
xcode: Xcode_15.0.1
test: spmbuildonly
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -106,9 +108,9 @@ jobs:
- name: Initialize xcodebuild
run: scripts/setup_spm_tests.sh
- name: Unit Tests
run: scripts/third_party/travis/retry.sh ./scripts/build.sh RemoteConfigUnit ${{ matrix.target }} spm
run: scripts/third_party/travis/retry.sh ./scripts/build.sh RemoteConfigUnit ${{ matrix.target }} ${{ matrix.test }}
- name: Fake Console tests
run: scripts/third_party/travis/retry.sh ./scripts/build.sh RemoteConfigFakeConsole ${{ matrix.target }} spm
run: scripts/third_party/travis/retry.sh ./scripts/build.sh RemoteConfigFakeConsole ${{ matrix.target }} ${{ matrix.test }}

catalyst:
# Don't run on private repo unless it is a PR.
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sessions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ jobs:
include:
- os: macos-12
xcode: Xcode_14.2
tests:
# Flaky tests on CI
- os: macos-13
xcode: Xcode_15.0.1
tests: --skip-tests
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -41,7 +44,7 @@ jobs:
- name: Build and test
run: |
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseSessions.podspec \
--platforms=${{ matrix.target }} \
--platforms=${{ matrix.target }} ${{ matrix.tests }}
spm:
# Don't run on private repo unless it is a PR.
Expand Down

0 comments on commit 64e94aa

Please sign in to comment.