-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
33 lines (29 loc) · 1.06 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
language: objective-c
osx_image: xcode10.2
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=OnDemandPassenger.xcworkspace
- SCHEME=OnDemandPassenger
- SDK=iphonesimulator12.2
- RUN_TESTS="YES"
- POD_LINT="NO"
matrix:
- DESTINATION="OS=10.3.1,name=iPhone SE"
before_install:
- rm -rf /Users/travis/Library/Developer/Xcode/DerivedData/OnDemandPassenger-*/
- rvm use $RVM_RUBY_VERSION
- bundle install
- bundle exec pod repo update
- bundle
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
# Build App in Debug and Run Tests if specified
- if [ $RUN_TESTS == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -UseModernBuildSystem=NO -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -UseModernBuildSystem=NO -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi