summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index b05a77162..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-language: objective-c
-osx_image: xcode11.2
-xcode_project: SmartDeviceLink-iOS.xcodeproj
-xcode_scheme: SmartDeviceLink
-xcode_sdk: iphonesimulator13.2
-env:
- global:
- - FRAMEWORK_NAME=SmartDeviceLink
-
-cache:
- directories:
- - Carthage
-
-notifications:
- email: false
-
-before_install:
-- brew update
-- brew outdated carthage || brew upgrade carthage
-- carthage bootstrap --verbose --no-use-binaries --platform iOS --cache-builds
-
-script:
-- set -o pipefail && xcodebuild -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 | xcpretty -c;
-- set -o pipefail && xcodebuild -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 | xcpretty -c;
-- set -o pipefail && 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 | xcpretty -c;
-
-after_success:
-- bash <(curl -s https://codecov.io/bash) -J 'SmartDeviceLink'