From 5890db966963fd76cfd020d68c0067a7741bef06 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Mon, 18 Dec 2023 13:30:56 -0800 Subject: [PATCH] Disable flaky messaging integration test (#12206) --- .github/workflows/messaging.yml | 1 + scripts/build.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/messaging.yml b/.github/workflows/messaging.yml index 1ab9b4b2df9..41bda1c82fb 100644 --- a/.github/workflows/messaging.yml +++ b/.github/workflows/messaging.yml @@ -23,6 +23,7 @@ concurrency: jobs: + # TODO(#12205) Update the build.sh script for this job from "test" instead of "build" messaging-integration-tests: # Don't run on private repo unless it is a PR. if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' diff --git a/scripts/build.sh b/scripts/build.sh index 378d12989e8..44ca9e89f87 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -369,6 +369,7 @@ case "$product-$platform-$method" in build ;; + # TODO(#12205) Restore this test to "test" instead of "build" Messaging-*-xcodebuild) pod_gen FirebaseMessaging.podspec --platforms=ios @@ -384,7 +385,7 @@ case "$product-$platform-$method" in -scheme "FirebaseMessaging-Unit-integration" \ "${ios_flags[@]}" \ "${xcb_flags[@]}" \ - test + build fi ;;