@@ -85,40 +85,41 @@ jobs:
8585 - name : Setup project and Build for Catalyst
8686 run : scripts/test_catalyst.sh FirebaseStorageObjC test FirebaseStorageObjC-Unit-unit
8787
88- quickstart :
89- # Don't run on private repo unless it is a PR.
90- if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
91- env :
92- plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
93- signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
94- runs-on : macos-11
95- steps :
96- - uses : actions/checkout@v2
97- - name : Setup quickstart
98- run : scripts/setup_quickstart.sh storage
99- - name : Install Secret GoogleService-Info.plist
100- run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-storage.plist.gpg \
101- quickstart-ios/storage/GoogleService-Info.plist "$plist_secret"
102- - name : Test objc quickstart
103- run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true)
104- - name : Test swift quickstart
105- run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true swift)
88+ # TODO: Restore Quickstart when ported for Firebase 9.
89+ # quickstart:
90+ # # Don't run on private repo unless it is a PR.
91+ # if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
92+ # env:
93+ # plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
94+ # signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
95+ # runs-on: macos-11
96+ # steps:
97+ # - uses: actions/checkout@v2
98+ # - name: Setup quickstart
99+ # run: scripts/setup_quickstart.sh storage
100+ # - name: Install Secret GoogleService-Info.plist
101+ # run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-storage.plist.gpg \
102+ # quickstart-ios/storage/GoogleService-Info.plist "$plist_secret"
103+ # - name: Test objc quickstart
104+ # run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true)
105+ # - name: Test swift quickstart
106+ # run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true swift)
106107
107108 pod-lib-lint :
108109 # Don't run on private repo unless it is a PR.
109110 if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
110111 runs-on : macos-11
111-
112112 strategy :
113113 matrix :
114114 target : [ios, tvos, macos, watchos]
115+ podspec : [Storage, StorageObjC]
115116 steps :
116117 - uses : actions/checkout@v2
117118 - name : Setup Bundler
118119 run : scripts/setup_bundler.sh
119120 - name : Build and test
120121 run : |
121- scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseStorage .podspec --test-specs=unit --platforms=${{ matrix.target }}
122+ scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb Firebase${{ matrix.podspec }} .podspec --test-specs=unit --platforms=${{ matrix.target }}
122123
123124 storage-cron-only :
124125 # Don't run on private repo.
0 commit comments