-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (26 loc) · 649 Bytes
/
.travis.yml
File metadata and controls
33 lines (26 loc) · 649 Bytes
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
language: objective-c
os: osx
osx_image: xcode10.2
env:
global:
- LC_CTYPE=en_US.UTF-8
- PROJECT=MoreCodable.xcodeproj
- CONFIG=Release
- ACTION="build-for-testing test-without-building"
branches:
only:
- master
cache:
directories:
- Carthage
matrix:
include:
- env: JOB=pod_lint
script:
- pod lib lint --quick
- env: JOB=xcode SCHEME=MoreCodable SDK=iphonesimulator
script:
- set -o pipefail
- xcodebuild $ACTION -project $PROJECT -scheme $SCHEME -sdk $SDK -destination 'name=iPhone XS,OS=12.2' -configuration $CONFIG ENABLE_TESTABILITY=YES | xcpretty
notifications:
email: false