-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
72 lines (64 loc) · 1.81 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
matrix:
include:
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="Swiftlint"
RUN_TESTS=False
USE_XCODE_BUILD=False
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="SwiftPM"
RUN_TESTS=True
USE_XCODE_BUILD=False
#- os: linux
# dist: xenial
# language: c
# compiler: clang
# env:
# - NAME="SwiftPM"
# RUN_TESTS=True
# USE_XCODE_BUILD=False
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="iOS"
RUN_TESTS=True
USE_XCODE_BUILD=True
DESTINATION="OS=12.0,name=iPhone X"
SDK="iphonesimulator"
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="macOS"
RUN_TESTS="YES"
USE_XCODE_BUILD=True
DESTINATION="arch=x86_64"
SDK="macosx"
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="tvOS"
RUN_TESTS=True
USE_XCODE_BUILD=True
DESTINATION="OS=12.0,name=Apple TV 4K"
SDK="appletvsimulator"
- os: osx
osx_image: xcode10.2
language: objective-c
env:
- NAME="watchOS"
RUN_TESTS=False
USE_XCODE_BUILD=True
DESTINATION="OS=5.0,name=Apple Watch Series 4 - 44mm"
SDK="watchsimulator"
script:
- ./.travis-ci.sh
before_install:
- ./.travis-ci-before-install.sh