-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update travis configuration for xcode8 and swift3 build
- Loading branch information
1 parent
4c7c142
commit 3d3be4d
Showing
1 changed file
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
language: objective-c | ||
osx_image: xcode8 | ||
env: | ||
global: | ||
- LC_CTYPE=en_US.UTF-8 | ||
- LANG=en_US.UTF-8 | ||
- WORKSPACE=AccountBalance.xcworkspace | ||
- SCHEME=AccountBalance | ||
- SDK=macosx10.12 | ||
- DESTINATION="arch=x86_64" | ||
cache: | ||
- bundler | ||
- cocoapods | ||
osx_image: xcode7.3 | ||
xcode_workspace: AccountBalance.xcworkspace | ||
xcode_scheme: AccountBalance | ||
xcode_sdk: macosx10.11 | ||
before_install: | ||
- gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet | ||
- pod update | ||
script: | ||
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty |