forked from Rightpoint/RZBluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (39 loc) · 1.03 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# References:
# - https://github.com/jdhealy/PrettyColors/blob/development/.travis.yml
env:
global:
- LC_CTYPE=en_US.UTF-8
os: osx
language: c
matrix:
exclude:
# Note: Workaround travis-ci/travis-ci#4681
# Exclude default job which lacks our included environment variables.
- os: osx
include:
- osx_image: xcode8
env:
- XCODE_SDK=iphonesimulator
XCODE_ACTION="build-for-testing test-without-building"
XCODE_SCHEME=RZBluetooth
XCODE_DESTINATION="name=iPhone 6s"
- osx_image: xcode8.3
env:
- XCODE_SDK=iphonesimulator
XCODE_ACTION="test"
XCODE_SCHEME=RZBluetooth
XCODE_DESTINATION="name=iPhone 6s"
git:
submodules: false
before_install:
- git submodule update --init --recursive
script:
- xcodebuild ${XCODE_ACTION}
-project RZBluetooth.xcodeproj
-scheme ${XCODE_SCHEME}
-sdk ${XCODE_SDK}
-destination "${XCODE_DESTINATION}"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
notifications:
email: false