mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
34 lines
796 B
YAML
34 lines
796 B
YAML
branches:
|
|
only:
|
|
- master
|
|
|
|
language: generic
|
|
matrix:
|
|
include:
|
|
- name: CocoaPods Lint & Danger
|
|
os: osx
|
|
osx_image: xcode10.3
|
|
language: ruby
|
|
script:
|
|
- PODSPEC=1 ./script/travis-script-macos
|
|
- bundle exec danger
|
|
- &swiftpm_linux
|
|
name: SwiftPM / Linux / Swift 4.2.4
|
|
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.3
|
|
env:
|
|
- SWIFT_VERSION=5.0.3
|
|
- <<: *swiftpm_linux
|
|
name: SwiftPM / Linux / Swift 5.1 Development
|
|
env:
|
|
- SWIFT_VERSION=5.1-DEVELOPMENT-SNAPSHOT-2019-09-09-a
|
|
|
|
notifications:
|
|
email: false
|