2016-06-18 05:01:08 +00:00
|
|
|
language: d
|
|
|
|
|
2019-10-22 12:42:00 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2016-06-18 05:01:08 +00:00
|
|
|
d:
|
|
|
|
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
|
|
|
|
# this way the overall test time gets cut down (GDC/LDC are a lot
|
|
|
|
# slower tham DMD, so they should be started early), while still
|
|
|
|
# catching most DMD version related build failures early
|
2019-09-17 17:01:58 +00:00
|
|
|
- dmd-2.088.0
|
2019-01-20 13:59:34 +00:00
|
|
|
- dmd-2.078.3
|
2019-08-26 19:08:01 +00:00
|
|
|
- ldc-1.17.0
|
2019-07-05 07:31:18 +00:00
|
|
|
- ldc-1.16.0
|
|
|
|
- ldc-1.15.0
|
|
|
|
- ldc-1.14.0
|
2018-10-02 09:19:00 +00:00
|
|
|
- ldc-1.9.0
|
2019-09-17 17:01:58 +00:00
|
|
|
- dmd-2.087.1
|
2019-07-05 07:31:18 +00:00
|
|
|
- dmd-2.086.1
|
2019-06-04 09:45:45 +00:00
|
|
|
- dmd-2.085.1
|
2018-10-02 09:19:00 +00:00
|
|
|
- dmd-2.079.0
|
2017-01-15 21:34:36 +00:00
|
|
|
- dmd-beta
|
2016-06-18 05:01:08 +00:00
|
|
|
|
2016-12-19 21:37:18 +00:00
|
|
|
env:
|
|
|
|
- CONFIG=select
|
|
|
|
- CONFIG=epoll
|
2019-11-02 21:18:29 +00:00
|
|
|
- CONFIG=kqueue
|
2017-07-16 20:28:43 +00:00
|
|
|
# disabled until the libasync driver of eventcore is more than a stub
|
|
|
|
#- CONFIG=libasync
|
2016-12-19 21:37:18 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- env: CONFIG=libasync
|
2017-01-15 21:34:36 +00:00
|
|
|
- d: dmd-beta
|
2019-11-02 21:18:29 +00:00
|
|
|
exclude:
|
|
|
|
- os: linux
|
|
|
|
env: CONFIG=kqueue
|
|
|
|
- os: osx
|
|
|
|
env: CONFIG=epoll
|
2019-11-22 19:52:54 +00:00
|
|
|
# see https://github.com/ldc-developers/ldc/issues/2187
|
|
|
|
- d: ldc-1.17.0
|
|
|
|
os: osx
|
|
|
|
- d: ldc-1.16.0
|
|
|
|
os: osx
|
|
|
|
- d: ldc-1.15.0
|
|
|
|
os: osx
|
|
|
|
- d: ldc-1.14.0
|
|
|
|
os: osx
|
|
|
|
- d: ldc-1.9.0
|
|
|
|
os: osx
|
2017-06-30 01:30:25 +00:00
|
|
|
include:
|
|
|
|
- d: dmd
|
2017-06-30 01:30:48 +00:00
|
|
|
env: CONFIG='select' DUB_FLAGS='--build unittest-cov --build-mode=singleFile'
|
2017-06-30 01:30:25 +00:00
|
|
|
- d: dmd
|
2017-06-30 01:30:48 +00:00
|
|
|
env: CONFIG='select' DUB_FLAGS='--build unittest-cov --build-mode=singleFile'
|
2017-06-30 01:30:25 +00:00
|
|
|
- d: dmd
|
2017-06-30 01:30:48 +00:00
|
|
|
env: CONFIG='select' DUB_FLAGS='--build unittest-cov --build-mode=singleFile'
|
2016-12-19 21:37:18 +00:00
|
|
|
|
2019-08-25 15:12:30 +00:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2018-04-05 07:17:45 +00:00
|
|
|
|
|
|
|
before_install:
|
2019-09-02 16:35:53 +00:00
|
|
|
- wget https://dlang.org/install.sh -O ~/dlang/install.dub.sh
|
2018-04-05 07:17:45 +00:00
|
|
|
- . $(bash ~/dlang/install.dub.sh -a dub)
|
|
|
|
- dub --version
|
|
|
|
|
2016-06-18 05:01:08 +00:00
|
|
|
script: ./travis-ci.sh
|
|
|
|
|
2017-06-30 01:30:25 +00:00
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|