forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (34 loc) · 1.02 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
osx_image: xcode8.3
language: generic
matrix:
include:
- os: osx
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
sudo: required
env:
- PODSPEC=1
- os: linux
sudo: required
dist: trusty
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