summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-02 08:35:48 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-02 08:35:48 -0400
commitdfc9903fe1cffec4651655459c820f1c101e0e2c (patch)
tree7098ed96307e2bb248010fb28ee5d49473d57d10
parent4c3141e600ad3e3be0eb60a879609d5eb3232e1f (diff)
downloadsdl_ios-dfc9903fe1cffec4651655459c820f1c101e0e2c.tar.gz
Undo changes to Travis config
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--.travis.yml14
1 files changed, 6 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 42c88be75..2c1ef1799 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,8 @@
language: objective-c
-osx_image: xcode11.5
+osx_image: xcode11.3
xcode_project: SmartDeviceLink-iOS.xcodeproj
-xcode_sdk: iphonesimulator13.5
+xcode_scheme: SmartDeviceLink
+xcode_sdk: iphonesimulator13.2
env:
global:
- FRAMEWORK_NAME=SmartDeviceLink
@@ -19,12 +20,9 @@ before_install:
- carthage bootstrap --verbose --no-use-binaries --platform iOS --cache-builds
script:
-# Build the Obj-C and Swift Example apps
-- 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
-- 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 -t ;
+- set -o pipefail && xcodebuild -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-ObjC" -destination "platform=iOS Simulator,OS=13.3,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build | xcpretty -c;
+- set -o pipefail && xcodebuild -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink-Example-Swift" -destination "platform=iOS Simulator,OS=13.3,name=iPhone 11" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO build | xcpretty -c;
+- set -o pipefail && xcodebuild -project "SmartDeviceLink-iOS.xcodeproj" -scheme "SmartDeviceLink" -destination "platform=iOS Simulator,OS=13.3,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:
-#- sleep 5 # https://github.com/travis-ci/travis-ci/issues/4725
- bash <(curl -s https://codecov.io/bash) -J 'SmartDeviceLink'