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 ;;