| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621 |
- name: zip
- on:
- pull_request:
- paths:
- - 'ReleaseTooling/Sources/**'
- - '.github/workflows/zip.yml'
- - 'scripts/build_non_firebase_sdks.sh'
- - 'Gemfile*'
- # Don't run based on any markdown only changes.
- - '!ReleaseTooling/*.md'
- schedule:
- # Run every day at 8pm(PST) - cron uses UTC times
- - cron: '0 4 * * *'
- workflow_dispatch:
- inputs:
- custom_spec_repos:
- description: 'Custom Podspec repos'
- required: true
- default: 'https://github.com/firebase/SpecsStaging.git'
- concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
- cancel-in-progress: true
- jobs:
- package-release:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- with:
- cache_key: ${{ matrix.os }}
- - name: Xcode 13.3.1
- run: sudo xcode-select -s /Applications/Xcode_13.3.1.app/Contents/Developer
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: ZipBuildingTest
- run: |
- mkdir -p release_zip_dir
- sh -x scripts/build_zip.sh release_zip_dir \
- "${{ github.event.inputs.custom_spec_repos || 'https://github.com/firebase/SpecsStaging.git' }}"
- - uses: actions/upload-artifact@v1
- with:
- name: Firebase-release-zip-zip
- # Zip the entire output directory since the builder adds subdirectories we don't know the
- # name of.
- path: release_zip_dir
- build:
- # 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' || github.event_name == 'workflow_dispatch'
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Xcode 13.3.1
- run: sudo xcode-select -s /Applications/Xcode_13.3.1.app/Contents/Developer
- - name: Build
- run: |
- cd ReleaseTooling
- swift build -v
- package-head:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: build
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- with:
- cache_key: ${{ matrix.os }}
- - name: Xcode 13.3.1
- run: sudo xcode-select -s /Applications/Xcode_13.3.1.app/Contents/Developer
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: ZipBuildingTest
- run: |
- mkdir -p zip_output_dir
- sh -x scripts/build_zip.sh \
- zip_output_dir "${{ github.event.inputs.custom_spec_repos || 'https://github.com/firebase/SpecsStaging.git,https://github.com/firebase/SpecsDev.git' }}" \
- build-head
- - uses: actions/upload-artifact@v1
- with:
- name: Firebase-actions-dir
- # Zip the entire output directory since the builder adds subdirectories we don't know the
- # name of.
- path: zip_output_dir
- quickstart_framework_abtesting:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "ABTesting"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- env:
- LEGACY: true
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseRemoteConfig/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/FirebaseCore.xcframework \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/FirebaseCoreInternal.xcframework \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/FBLPromises.xcframework \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/FirebaseInstallations.xcframework \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/GoogleUtilities.xcframework
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-abtesting.plist.gpg \
- quickstart-ios/abtesting/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- env:
- LEGACY: true
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Remove data before upload
- env:
- LEGACY: true
- if: ${{ failure() }}
- run: scripts/remove_data.sh abtesting
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_abtesting
- path: quickstart-ios/
- quickstart_framework_auth:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Authentication"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - name: Setup Swift Quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" NON_FIREBASE_SDKS="FBSDKLoginKit FBSDKCoreKit FBSDKCoreKit_Basics FBAEMKit" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseDynamicLinks/* \
- "${HOME}"/ios_frameworks/Firebase/GoogleSignIn/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAuth/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-auth.plist.gpg \
- quickstart-ios/authentication/GoogleService-Info.plist "$plist_secret"
- - name: Test Swift Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh authentiation
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_auth
- path: quickstart-ios/
- quickstart_framework_config:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Config"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - name: Setup Swift Quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseRemoteConfig/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-config.plist.gpg \
- quickstart-ios/config/GoogleService-Info.plist "$plist_secret"
- - name: Test Swift Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh config
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_config
- path: quickstart-ios/
- quickstart_framework_crashlytics:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Crashlytics"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- env:
- LEGACY: true
- run: |
- SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseCrashlytics/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- cp quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Firebase/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart
- cp quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Firebase/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart
- chmod +x quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/run
- chmod +x quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/upload-symbols
- # TODO(#8057): Restore Swift Quickstart
- # - name: Setup swift quickstart
- # env:
- # LEGACY: true
- # run: |
- # SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" NON_FIREBASE_SDKS="ReachabilitySwift" scripts/setup_quickstart_framework.sh \
- # "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/*
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-crashlytics.plist.gpg \
- quickstart-ios/crashlytics/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- env:
- LEGACY: true
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- # TODO(#8057): Restore Swift Quickstart
- # - name: Test Swift Quickstart
- # env:
- # LEGACY: true
- # run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
- - name: Remove data before upload
- env:
- LEGACY: true
- if: ${{ failure() }}
- run: scripts/remove_data.sh crashlytics
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_crashlytics
- path: quickstart-ios/
- quickstart_framework_database:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Database"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" NON_FIREBASE_SDKS="FirebaseDatabaseUI" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseDatabase/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseStorage/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseFirestore/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAuth/* \
- "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-database.plist.gpg \
- quickstart-ios/database/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh database
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts database
- path: quickstart-ios/
- quickstart_framework_dynamiclinks:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "DynamicLinks"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - name: Setup Objc Quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseDynamicLinks/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Setup Swift Quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
- - name: Update Environment Variable For DynamicLinks
- run: |
- sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' quickstart-ios/dynamiclinks/DynamicLinksExample/DynamicLinksExample.entitlements
- sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExample/ViewController.m
- sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExampleSwift/ViewController.swift
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-dynamiclinks.plist.gpg \
- quickstart-ios/dynamiclinks/GoogleService-Info.plist "$plist_secret"
- - name: Test Objc Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Test Swift Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh dynamiclinks
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_dynamiclinks
- path: quickstart-ios/
- quickstart_framework_firestore:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Firestore"
- runs-on: macos-12
- steps:
- # Xcode 14 fails to build FirebaseAuthUI because it includes Resources. See #9886.
- - name: Xcode 13.3.1
- run: sudo xcode-select -s /Applications/Xcode_13.3.1.app/Contents/Developer
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" NON_FIREBASE_SDKS="SDWebImage FirebaseAuthUI FirebaseEmailAuthUI" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseFirestore/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAuth/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-firestore.plist.gpg \
- quickstart-ios/firestore/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh firestore
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_firestore
- path: quickstart-ios/
- check_framework_firestore_symbols:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- FRAMEWORK_DIR: "Firebase-actions-dir"
- FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT: 1
- runs-on: macos-12
- steps:
- - name: Xcode 13.3.1
- run: sudo xcode-select -s /Applications/Xcode_13.3.1.app/Contents/Developer
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Install xcpretty
- run: gem install xcpretty
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Check linked Firestore.xcframework for unlinked symbols.
- run: |
- scripts/check_firestore_symbols.sh \
- $(pwd) \
- "${HOME}"/ios_frameworks/Firebase/FirebaseFirestore/FirebaseFirestore.xcframework
- quickstart_framework_inappmessaging:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "InAppMessaging"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseDynamicLinks/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseInAppMessaging/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Setup swift quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
- - 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 Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Test Swift Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh inappmessaging
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_ihappmessaging
- path: quickstart-ios/
- quickstart_framework_messaging:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Messaging"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseMessaging/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Setup swift quickstart
- run: SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-messaging.plist.gpg \
- quickstart-ios/messaging/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Test Swift Quickstart
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
- - name: Remove data before upload
- if: ${{ failure() }}
- run: scripts/remove_data.sh messaging
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_messaging
- path: quickstart-ios/
- quickstart_framework_storage:
- # Don't run on private repo.
- if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- needs: package-head
- env:
- plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- FRAMEWORK_DIR: "Firebase-actions-dir"
- SDK: "Storage"
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - name: Get framework dir
- uses: actions/download-artifact@v1
- with:
- name: Firebase-actions-dir
- - uses: ruby/setup-ruby@v1
- - name: Setup Bundler
- run: ./scripts/setup_bundler.sh
- - name: Move frameworks
- run: |
- mkdir -p "${HOME}"/ios_frameworks/
- find "${GITHUB_WORKSPACE}/${FRAMEWORK_DIR}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
- - uses: actions/checkout@v3
- - name: Setup quickstart
- env:
- LEGACY: true
- run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
- "${HOME}"/ios_frameworks/Firebase/FirebaseStorage/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAuth/* \
- "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
- - name: Setup swift quickstart
- env:
- LEGACY: true
- run: SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
- - name: Install Secret GoogleService-Info.plist
- run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-storage.plist.gpg \
- quickstart-ios/storage/GoogleService-Info.plist "$plist_secret"
- - name: Test Quickstart
- env:
- LEGACY: true
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- - name: Test Swift Quickstart
- env:
- LEGACY: true
- run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
- - name: Remove data before upload
- env:
- LEGACY: true
- if: ${{ failure() }}
- run: scripts/remove_data.sh storage
- - uses: actions/upload-artifact@v2
- if: ${{ failure() }}
- with:
- name: quickstart_artifacts_storage
- path: quickstart-ios/
|