terminators
This commit is contained in:
parent
217105fb70
commit
9cac1dffb3
|
@ -30,7 +30,7 @@ matrix:
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||||
gem install xcpretty
|
gem install xcpretty;
|
||||||
fi
|
fi
|
||||||
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
||||||
eval "$(curl -sL https://swiftenv.fuller.li/install.sh)";
|
eval "$(curl -sL https://swiftenv.fuller.li/install.sh)";
|
||||||
|
@ -38,10 +38,10 @@ before_install:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||||
xcodebuild clean build test -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -enableCodeCoverage YES | xcpretty
|
xcodebuild clean build test -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -enableCodeCoverage YES | xcpretty;
|
||||||
fi
|
fi
|
||||||
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
||||||
swift test
|
swift test;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
|
|
Loading…
Reference in New Issue