Skip to content

Commit e013631

Browse files
committed
Add -sdk arg to xcodebuild in test script
1 parent 116c72f commit e013631

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cache:
44
- cocoapods
55
- bundler
66
gemfile: test/Gemfile
7-
install_script:
7+
install:
88
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
99
- bundle exec pod setup
1010
before_script:

test/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ex
33

44
build() {
5-
xcodebuild -workspace Binary.xcworkspace -scheme Binary ONLY_ACTIVE_ARCH=YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -quiet || exit 1
5+
xcodebuild -sdk iphonesimulator -workspace Binary.xcworkspace -scheme Binary ONLY_ACTIVE_ARCH=YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -quiet || exit 1
66
}
77

88
rm -rf Pods

0 commit comments

Comments
 (0)