2014-08-04 17:17:05 +02:00
|
|
|
language: objective-c
|
2016-06-14 20:58:56 +02:00
|
|
|
cache: cocoapods # pod install somtimes takes >20 minutes, so lets cache this
|
2015-09-01 19:22:08 +02:00
|
|
|
|
2015-10-31 23:59:32 +01:00
|
|
|
osx_image: xcode7.1
|
|
|
|
xcode_sdk: iphonesimulator9.1
|
2015-09-01 19:22:08 +02:00
|
|
|
|
|
|
|
before_install:
|
2016-06-14 20:58:56 +02:00
|
|
|
- brew update # we may not be running the latest version so always update
|
|
|
|
- brew outdated xctool || brew upgrade xctool # only upgrade if outdated (saves 2 minutes)
|
|
|
|
- gem install cocoapods # get the latest cocoapods
|
|
|
|
- pod repo update --silent # log output is too long without --silent
|
|
|
|
|
|
|
|
install: travis_wait 30 pod install # OpenSSL takes a long time to compile
|
2015-09-01 19:22:08 +02:00
|
|
|
|
2014-08-05 05:44:43 +02:00
|
|
|
xcode_workspace: Signal.xcworkspace
|
|
|
|
xcode_scheme: Signal
|