File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 30
30
- name : Install Secret FIREGSignInInfo.h
31
31
run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/FIREGSignInInfo.h.gpg \
32
32
quickstart-ios/TestUtils/FIREGSignInInfo.h "$signin_secret"
33
- - name : Test quickstart
33
+ - name : Test objc quickstart
34
34
run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Config)
35
+ - name : Test swift quickstart
36
+ run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Config swift)
35
37
Original file line number Diff line number Diff line change 19
19
set -xeuo pipefail
20
20
21
21
sample=" $1 "
22
+ platform=" ${2-} "
22
23
23
24
# Source function to check if CI secrets are available.
24
25
source scripts/check_secrets.sh
25
26
26
27
if check_secrets; then
27
28
cd quickstart-ios
28
- have_secrets=true SAMPLE=" $sample " ./scripts/test.sh
29
+ if [ " $platform " = " swift" ]; then
30
+ have_secrets=true SAMPLE=" $sample " SWIFT_SUFFIX=" Swift" ./scripts/test.sh
31
+ else
32
+ have_secrets=true SAMPLE=" $sample " ./scripts/test.sh
33
+ fi
34
+
29
35
fi
You can’t perform that action at this time.
0 commit comments