mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 04:50:24 +00:00
32 lines
678 B
YAML
32 lines
678 B
YAML
branches:
|
|
only:
|
|
- master
|
|
|
|
language: generic
|
|
matrix:
|
|
include:
|
|
- &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.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-05-a
|
|
install: true
|
|
script:
|
|
- ./test $TYPE
|
|
|
|
notifications:
|
|
email: false
|