File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -93,30 +93,25 @@ jobs:
9393 plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
9494
9595 quickstart-ftl-cron-only :
96- # Don't run on private repo.
9796 if : github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule'
9897 env :
9998 plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
10099 runs-on : macos-15
101100 steps :
102101 - uses : actions/checkout@v4
103- - uses : ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
104102 - uses : actions/setup-python@v5
105103 with :
106104 python-version : ' 3.11'
107105 - name : Xcode
108106 run : sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
109107 - name : Setup quickstart
110- run : scripts/setup_quickstart .sh messaging
108+ run : scripts/setup_quickstart_spm .sh messaging
111109 - name : Install Secret GoogleService-Info.plist
112110 run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-messaging.plist.gpg \
113111 quickstart-ios/messaging/GoogleService-Info.plist "$plist_secret"
114- - name : Build objc quickstart
112+ - name : Build quickstart
115113 run : ([ -z $plist_secret ] ||
116114 scripts/third_party/travis/retry.sh scripts/test_quickstart_ftl.sh Messaging)
117- - name : Build swift quickstart
118- run : ([ -z $plist_secret ] ||
119- scripts/third_party/travis/retry.sh scripts/test_quickstart_ftl.sh Messaging swift)
120115 - id : ftl_test
121116 uses :
FirebaseExtended/github-actions/[email protected] 122117 with :
Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ source scripts/check_secrets.sh
2929
3030if check_secrets; then
3131 cd quickstart-ios
32+ DIR=$( echo " $sample " | tr ' [:upper:]' ' [:lower:]' )
3233 if [ " $language " = " swift" ]; then
33- have_secrets=true SAMPLE=" $sample " SWIFT_SUFFIX=" Swift" ./scripts/build-for-testing.sh
34+ have_secrets=true SAMPLE=" $sample " SPM=true SWIFT_SUFFIX=" Swift" DIR= " $DIR " ./scripts/build-for-testing.sh
3435 else
35- have_secrets=true SAMPLE=" $sample " ./scripts/build-for-testing.sh
36+ have_secrets=true SAMPLE=" $sample " SPM=true DIR= " $DIR " ./scripts/build-for-testing.sh
3637 fi
3738
3839fi
You can’t perform that action at this time.
0 commit comments