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
|
|
|
|
2016-12-21 21:11:36 +01:00
|
|
|
osx_image: xcode8.2
|
2015-09-01 19:22:08 +02:00
|
|
|
|
2016-10-20 17:32:31 +02:00
|
|
|
env:
|
|
|
|
-EARLY_START_SIMULATOR=1 # early starting simulator reduces false negatives due to test timeouts
|
|
|
|
|
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
|
2016-07-01 08:08:49 +02:00
|
|
|
- gem install xcpretty
|
2016-11-14 20:24:03 +01:00
|
|
|
- travis_wait 20 pod repo update --silent # log output is too long without --silent
|
2016-06-14 20:58:56 +02:00
|
|
|
|
|
|
|
install: travis_wait 30 pod install # OpenSSL takes a long time to compile
|
2015-09-01 19:22:08 +02:00
|
|
|
|
2016-10-10 22:02:09 +02:00
|
|
|
script: make ci
|
2016-07-01 08:08:49 +02:00
|
|
|
|