See what version we're running (#220)

* See what version we're running

* Force 0.39.0
This commit is contained in:
Garrett Moon
2016-07-15 14:40:40 -07:00
committed by GitHub
parent 55893eee2f
commit b60c7ca8b8

View File

@@ -11,8 +11,11 @@ env:
- OS='latest' name='iPhone 6'
before_install:
- gem uninstall cocoapods --version '>0.39.0'
- gem install cocoapods -v '0.39.0'
- gem install xcpretty
before_script: pod lib lint --allow-warnings
before_script:
- pod --version
- pod lib lint --allow-warnings
script:
- xcodebuild clean test -destination "platform=iOS Simulator,OS=$OS,name=$name" -workspace Example/PINRemoteImage.xcworkspace -scheme PINRemoteImage ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO | xcpretty -t; test ${PIPESTATUS[0]} -eq 0