2019-12-14 00:36:15 +00:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2018-09-04 23:45:40 +00:00
|
|
|
language: generic
|
2020-09-07 02:52:11 +00:00
|
|
|
jobs:
|
2018-09-04 23:45:40 +00:00
|
|
|
include:
|
2020-09-07 02:52:11 +00:00
|
|
|
# - &xcode
|
|
|
|
# name: Xcode 10.3 / Swift 5.0
|
|
|
|
# os: osx
|
|
|
|
# osx_image: xcode10.3
|
|
|
|
# script:
|
|
|
|
# - ./test macos
|
|
|
|
# - ./test ios
|
|
|
|
# - ./test tvos
|
|
|
|
# - &swiftpm_darwin
|
|
|
|
# name: SwiftPM / Darwin / Swift 5.0
|
|
|
|
# os: osx
|
|
|
|
# osx_image: xcode10.3
|
|
|
|
# script: ./test swiftpm
|
2019-12-14 00:36:15 +00:00
|
|
|
- &swiftpm_linux
|
2020-09-07 02:52:11 +00:00
|
|
|
name: SwiftPM / Linux / Swift 5.2.3
|
2019-03-17 00:53:13 +00:00
|
|
|
os: linux
|
|
|
|
env:
|
2020-09-07 02:52:11 +00:00
|
|
|
- SWIFT_VERSION=5.2.3
|
2018-09-04 23:45:40 +00:00
|
|
|
install:
|
2019-12-14 00:36:15 +00:00
|
|
|
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
|
|
|
|
script:
|
|
|
|
- ./test swiftpm
|
|
|
|
- <<: *swiftpm_linux
|
2020-09-07 02:52:11 +00:00
|
|
|
name: SwiftPM / Linux / Swift 5.3 Development
|
2018-09-04 23:45:40 +00:00
|
|
|
env:
|
2020-09-07 02:52:11 +00:00
|
|
|
- SWIFT_VERSION=5.3-DEVELOPMENT-SNAPSHOT-2020-05-11-a
|
2019-12-14 00:36:15 +00:00
|
|
|
- <<: *swiftpm_linux
|
2020-09-07 02:52:11 +00:00
|
|
|
name: SwiftPM / Linux / Swift Development
|
2019-12-14 00:36:15 +00:00
|
|
|
env:
|
2020-09-07 02:52:11 +00:00
|
|
|
- SWIFT_VERSION=DEVELOPMENT-SNAPSHOT-2020-05-18-a
|
2019-03-17 00:53:13 +00:00
|
|
|
install: true
|
2018-09-04 23:45:40 +00:00
|
|
|
script:
|
|
|
|
- ./test $TYPE
|
2019-03-17 00:53:13 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|