forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (48 loc) · 1.33 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
osx_image: xcode8.3
language: generic
matrix:
include:
- os: osx
env:
- PLATFORM=macos
- XCODE_ACTION="build-for-testing test-without-building"
- os: osx
osx_image: xcode9
env:
- PLATFORM=macos
- XCODE_ACTION="build-for-testing test-without-building"
- os: osx
env:
- PLATFORM=ios
- XCODE_ACTION="build-for-testing test-without-building"
- os: osx
env:
- PLATFORM=tvos
- XCODE_ACTION="build-for-testing test-without-building"
- os: osx
env:
- PLATFORM=swiftpm
- os: osx
osx_image: xcode9.1
env:
- PLATFORM=swiftpm
- os: osx
sudo: required
env:
- PODSPEC=1
- os: linux
sudo: required
dist: trusty
- os: linux
sudo: required
dist: trusty
env:
- SWIFT_VERSION=4.0.2
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-install-macos; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-install-linux; fi
- if [[ "$PODSPEC" ]]; then rvm system; sudo gem install bundler; bundle install; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-script-macos; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-script-linux; fi
- if [[ "$PODSPEC" ]]; then danger; fi