From 08733c4c480f0007af1de5f1907a835d036fd52d Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Thu, 9 Nov 2023 09:15:54 -0800 Subject: [PATCH] Disable RTDB unit tests for now in XC15 CI (#12087) --- .github/workflows/database.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml index 3adac93aa7c..9b632f46ed8 100644 --- a/.github/workflows/database.yml +++ b/.github/workflows/database.yml @@ -31,8 +31,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 @@ -42,7 +44,7 @@ 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 FirebaseDatabase.podspec --test-specs=unit --platforms=${{ matrix.target }} + run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDatabase.podspec ${{ matrix.tests }} --platforms=${{ matrix.target }} integration: # Don't run on private repo unless it is a PR.