forked from Quick/Nimble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (55 loc) · 1.26 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
branches:
only:
- master
language: generic
matrix:
include:
- &cocoapods
name: CocoaPods Lint
os: osx
osx_image: xcode10.1
install: bundle install
script: ./test podspec
- &xcode
name: Xcode 10.1 / Swift 4.2
os: osx
osx_image: xcode10.1
script:
- ./test macos
- ./test ios
- ./test tvos
- <<: *xcode
name: Xcode 10.2 / Swift 5.0
osx_image: xcode10.2
- &swiftpm_darwin
name: SwiftPM / Darwin / Swift 4.2
os: osx
osx_image: xcode10.1
script: ./test swiftpm
- <<: *swiftpm_darwin
name: SwiftPM / Darwin / Swift 5.0
osx_image: xcode10.2
- &swiftpm_linux
name: SwiftPM / Linux / Swift 4.2.4
os: linux
dist: trusty
sudo: required
env:
- SWIFT_VERSION=4.2.4
install:
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
script:
- ./test swiftpm
- <<: *swiftpm_linux
name: SwiftPM / Linux / Swift 5.0
env:
- SWIFT_VERSION=5.0
- <<: *swiftpm_linux
name: SwiftPM / Linux / Swift 5.1 Development
env:
- SWIFT_VERSION=5.1-DEVELOPMENT-SNAPSHOT-2019-04-17-a
install: true
script:
- ./test $TYPE
notifications:
email: false