summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 78343bb17fe07bbda13c0cc83538b60ae4935cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: objective-c
osx_image: xcode7.1

notifications:
  email: false

before_install:
  - brew update
  - brew outdated xctool || brew upgrade xctool
  - brew outdated carthage || brew upgrade carthage

before_script:
  - carthage bootstrap --platform ios

script:
  - xctool -project SmartDeviceLink-iOS.xcodeproj -scheme SmartDeviceLink -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES test

after_script:
  - bash <(curl -s https://codecov.io/bash)