mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
90daf60c56
* Add generated Signal-Swift.h to test search header path. You must do this when testing an ObjC clas with swift dependencies (PushManager. in this case) * Word on the street is that XCode8.2 is less flaky for running simulator tests // FREEBIE
19 lines
680 B
YAML
19 lines
680 B
YAML
language: objective-c
|
|
cache: cocoapods # pod install somtimes takes >20 minutes, so lets cache this
|
|
|
|
osx_image: xcode8.2
|
|
|
|
env:
|
|
-EARLY_START_SIMULATOR=1 # early starting simulator reduces false negatives due to test timeouts
|
|
|
|
before_install:
|
|
- 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
|
|
- gem install xcpretty
|
|
- travis_wait 20 pod repo update --silent # log output is too long without --silent
|
|
|
|
install: travis_wait 30 pod install # OpenSSL takes a long time to compile
|
|
|
|
script: make ci
|
|
|