[Infra] Common cocoapods pod lib lint job #3274
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: inappmessaging | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'FirebaseInAppMessaging**' | |
- 'Interop/Analytics/Public/*.h' | |
- '.github/workflows/inappmessaging.yml' | |
- '.github/workflows/common.yml' | |
- '.github/workflows/common_cocoapods.yml' | |
- 'Gemfile*' | |
schedule: | |
# Run every day at 10pm (PST) - cron uses UTC times | |
- cron: '0 6 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
spm: | |
uses: ./.github/workflows/common.yml | |
with: | |
target: FirebaseInAppMessaging-Beta | |
platforms: iOS | |
buildonly_platforms: iOS | |
pod_lib_lint: | |
# - name: FirebaseInAppMessaging | |
# run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec}} | |
uses: ./.github/workflows/common_cocoapods.yml | |
with: | |
product: FirebaseInAppMessaging | |
platforms: iOS, tvOS | |
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' | |
# TODO(#12770): Update to macos-14 when tests are updated for Xcode 15. | |
runs-on: macos-15 | |
strategy: | |
matrix: | |
# TODO(#8682): Reenable iPad after fixing Xcode 13 test failures. | |
# platform: [iOS, iPad] | |
platform: [iOS] | |
xcode: [Xcode_16.2] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126 | |
with: | |
cache_key: ${{ matrix.platform }} | |
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1 | |
- name: Setup Bundler | |
run: scripts/setup_bundler.sh | |
- name: Xcode | |
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer | |
- name: Prereqs | |
run: scripts/install_prereqs.sh InAppMessaging ${{ matrix.platform }} xcodebuild | |
- name: Build and test | |
run: scripts/third_party/travis/retry.sh scripts/build.sh InAppMessaging ${{ matrix.platform }} xcodebuild | |
fiam-cron-only: | |
# Don't run on private repo. | |
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk' | |
runs-on: macos-15 | |
strategy: | |
matrix: | |
flags: [ | |
'--use-static-frameworks' | |
] | |
platform: [ios, tvos] | |
needs: pod_lib_lint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1 | |
- name: Xcode | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer | |
- name: Setup Bundler | |
run: scripts/setup_bundler.sh | |
- name: PodLibLint InAppMessaging Cron | |
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseInAppMessaging.podspec --platforms=${{ matrix.platform }} ${{ matrix.flags }} | |
quickstart: | |
# 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' | |
env: | |
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }} | |
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }} | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1 | |
- name: Xcode | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer | |
- name: Setup quickstart | |
run: scripts/setup_quickstart.sh inappmessaging | |
- name: install secret googleservice-info.plist | |
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-inappmessaging.plist.gpg \ | |
quickstart-ios/inappmessaging/GoogleService-Info.plist "$plist_secret" | |
- name: Test objc quickstart | |
run: ([ -z $plist_secret ] || | |
scripts/third_party/travis/retry.sh scripts/test_quickstart.sh InAppMessaging true) | |
- name: Test swift quickstart | |
run: ([ -z $plist_secret ] || | |
scripts/third_party/travis/retry.sh scripts/test_quickstart.sh InAppMessaging true swift) |