@@ -56,10 +56,12 @@ jobs:
56
56
- uses : actions/checkout@v2
57
57
- name : Pull zip from GCS
58
58
run : scripts/pull_zip_gcloud.sh "$plist_secret" "$FRAMEWORK_ZIP" "${HOME}/ios_frameworks"
59
- - name : Setup quickstart
59
+ - name : Setup Objc Quickstart
60
60
run : SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
61
61
" ${HOME}" /ios_frameworks/Firebase/FirebaseDynamicLinks/* \
62
62
" ${HOME}" /ios_frameworks/Firebase/FirebaseAnalytics/*
63
+ - name : Setup Swift Quickstart
64
+ run : SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
63
65
- name : Update Environment Variable For DynamicLinks
64
66
run : |
65
67
sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' quickstart-ios/dynamiclinks/DynamicLinksExample/DynamicLinksExample.entitlements
@@ -71,11 +73,13 @@ jobs:
71
73
- name : Install Secret FIREGSignInInfo.h
72
74
run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/FIREGSignInInfo.h.gpg \
73
75
quickstart-ios/TestUtils/FIREGSignInInfo.h "$signin_secret"
74
- - name : Test Quickstart
76
+ - name : Test Objc Quickstart
75
77
run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
78
+ - name : Test Swift Quickstart
79
+ run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
76
80
- name : Remove data before upload
77
81
if : ${{ failure() }}
78
- run : scripts/remove_data.sh "${SDK}"
82
+ run : scripts/remove_data.sh dynamiclinks
79
83
- uses : actions/upload-artifact@v2
80
84
if : ${{ failure() }}
81
85
with :
0 commit comments