Fix travis build

// FREEBIE
This commit is contained in:
Michael Kirk 2016-10-05 17:19:23 -04:00
parent 43a2eb9da1
commit 9a9f24d8d1
2 changed files with 25 additions and 8 deletions

View File

@ -12,12 +12,5 @@ before_install:
install: travis_wait 30 pod install # OpenSSL takes a long time to compile
script:
- |
set -o pipefail
# default xctool was hanging. see https://github.com/travis-ci/travis-ci/issues/3986
xcodebuild -workspace Signal.xcworkspace -scheme Signal \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 6,OS=10.0' \
build test | xcpretty
script: make

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
# Make sure we're failing even though we pipe to xcpretty
SHELL=/bin/bash -o pipefail
BUILD_PLATFORM=iOS Simulator,name=iPhone 6,OS=10.0
WORKING_DIR = ./
default: test
build_signal:
cd $(WORKING_DIR) && \
pod install && \
xcodebuild -workspace Signal.xcworkspace -scheme Signal \
-sdk iphonesimulator \
build | xcpretty
retest:
cd $(WORKING_DIR) && \
xcodebuild -workspace Signal.xcworkspace -scheme Signal \
-sdk iphonesimulator \
-destination 'platform=${BUILD_PLATFORM}' \
test | xcpretty
test: build_signal retest