forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
56 lines (54 loc) · 1.49 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
branches:
only:
- master
language: generic
matrix:
include:
- name: CocoaPods Lint & Danger
os: osx
osx_image: xcode10.1
language: ruby
script:
- PODSPEC=1 ./script/travis-script-macos
- bundle exec danger
- &xcode
name: Xcode 10.1 / Swift 4.2
os: osx
env:
- XCODE_ACTION="build-for-testing test-without-building"
osx_image: xcode10.1
script:
- PLATFORM=macos ./script/travis-script-macos
- PLATFORM=macos_static ./script/travis-script-macos
- PLATFORM=ios ./script/travis-script-macos
- PLATFORM=tvos ./script/travis-script-macos
- <<: *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: PLATFORM=swiftpm ./script/travis-script-macos
- <<: *swiftpm_darwin
name: SwiftPM / Darwin / Swift 5.0
osx_image: xcode10.2
- &swiftpm_linux
name: SwiftPM / Linux / Swift 4.2
os: linux
sudo: required
dist: trusty
env:
- SWIFT_VERSION=4.2.4
install: ./script/travis-install-linux
script: ./script/travis-script-linux
- <<: *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-05-28-a
notifications:
email: false