From ae90eabbc01bfbb349c782eb553c566461b2a8e2 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Fri, 3 Nov 2023 08:48:16 -0700 Subject: [PATCH] Address a nightly flake --- .github/workflows/messaging.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/messaging.yml b/.github/workflows/messaging.yml index 892bd7ea3ae..3ee62ae15c3 100644 --- a/.github/workflows/messaging.yml +++ b/.github/workflows/messaging.yml @@ -75,7 +75,8 @@ jobs: - name: Xcode run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer - name: Build and test - run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} --test-specs=unit --platforms=${{ matrix.target }} + run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} \ + --test-specs=unit --platforms=${{ matrix.target }} spm: # Don't run on private repo unless it is a PR. @@ -186,8 +187,10 @@ jobs: include: - os: macos-12 xcode: Xcode_14.2 + tests: --test-specs=unit - os: macos-13 xcode: Xcode_15.0.1 + tests: --skip-tests runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -197,7 +200,8 @@ jobs: - name: Xcode run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer - name: PodLibLint Messaging Cron - run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseMessaging.podspec --test-specs=unit --platforms=${{ matrix.target }} --use-static-frameworks + run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseMessaging.podspec \ + ${{ matrix.tests }} --platforms=${{ matrix.target }} --use-static-frameworks messaging-sample-build-test: # Don't run on private repo unless it is a PR.