forked from uber/RIBs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·34 lines (30 loc) · 942 Bytes
/
.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
jobs:
include:
- language: objective-c
os: osx
osx_image: xcode11.2
env:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- IOS_VER=13.2.2
- IOS_SDK=iphonesimulator13.2
- SIMULATOR_NAME="iPhone 8"
cache:
directories:
- $HOME/Carthage
script:
- set -o pipefail
- carthage version
- carthage update --platform iOS
- cd ios
- xcodebuild -version
- xcodebuild -showsdks
- instruments -s devices
- xcodebuild -scheme "RIBs" -destination "OS=$IOS_VER,name=$SIMULATOR_NAME" -sdk "$IOS_SDK" -configuration Release clean build | xcpretty -c;
- xcodebuild -scheme "RIBs" -destination "OS=$IOS_VER,platform=iOS Simulator,name=$SIMULATOR_NAME" -sdk "$IOS_SDK" -configuration Debug clean build test | xcpretty -c;
branches:
except:
- gh-pages
- assets
notifications:
email: false