summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-05-29 14:55:04 -0400
committerNicoleYarroch <nicole@livio.io>2020-05-29 14:55:04 -0400
commit18696d5d24f0e5ae07fdcff0a37f5d8321eb1f95 (patch)
tree187754788e443dcf71c84f400492790f2fc57181
parenta48b5add7fa2532dd3f95e630d0a858cfcf90869 (diff)
downloadsdl_ios-18696d5d24f0e5ae07fdcff0a37f5d8321eb1f95.tar.gz
Added back xcpretty in travis config
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 9eff7c32f..770b60739 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,10 +20,10 @@ before_install:
script:
# Build the Obj-C and Swift Example apps
-#xcodebuild -allowProvisioningUpdates -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-ObjC" -destination "platform=iOS Simulator,OS=13.2.2,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build;
-#xcodebuild -allowProvisioningUpdates -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-Swift" -destination "platform=iOS Simulator,OS=13.2.2,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build;
+set -o pipefail && xcodebuild -allowProvisioningUpdates -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-ObjC" -destination "platform=iOS Simulator,OS=13.5,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build | xcpretty -c;
+set -o pipefail && xcodebuild -allowProvisioningUpdates -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-Swift" -destination "platform=iOS Simulator,OS=13.5,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build | xcpretty -c;
# Run the SmartDeviceLink tests
-- xcodebuild -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink" -destination "platform=iOS Simulator,OS=13.2.2,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES ENABLE_TESTABILITY=YES test;
+- set -o pipefail && xcodebuild -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink" -destination "platform=iOS Simulator,OS=13.5,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES ENABLE_TESTABILITY=YES test | xcpretty -c;
after_success:
- bash <(curl -s https://codecov.io/bash) -J 'SmartDeviceLink'