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
|
2020-07-24 05:50:48 +00:00
|
|
|
- dmd-2.093.1,dub
|
|
|
|
- dmd-2.079.1,dub
|
|
|
|
- ldc-1.22.0,dub
|
2020-01-06 05:56:39 +00:00
|
|
|
- ldc-1.15.0,dub
|
2020-05-24 08:29:19 +00:00
|
|
|
- ldc-1.20.1,dub
|
2020-01-06 05:56:39 +00:00
|
|
|
- ldc-1.19.0,dub
|
2020-07-24 05:50:48 +00:00
|
|
|
- dmd-2.092.1,dub
|
2020-01-06 05:56:39 +00:00
|
|
|
- dmd-2.089.1,dub
|
|
|
|
- dmd-2.088.1,dub
|
|
|
|
- dmd-nightly,dub
|
|
|
|
- ldc-latest-ci,dub
|
2016-06-18 05:01:08 +00:00
|
|
|
|
2016-12-19 21:37:18 +00:00
|
|
|
env:
|
|
|
|
- CONFIG=select
|
|
|
|
- CONFIG=epoll
|
2020-05-25 09:38:39 +00:00
|
|
|
- CONFIG=cfrunloop
|
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
|
2020-02-17 17:29:54 +00:00
|
|
|
- d: dmd-nightly
|
|
|
|
- d: ldc-latest-ci
|
2019-11-02 21:18:29 +00:00
|
|
|
exclude:
|
|
|
|
- os: linux
|
2020-05-25 09:38:39 +00:00
|
|
|
env: CONFIG=cfrunloop
|
2019-11-02 21:18:29 +00:00
|
|
|
- os: osx
|
|
|
|
env: CONFIG=epoll
|
2019-11-22 19:52:54 +00:00
|
|
|
# see https://github.com/ldc-developers/ldc/issues/2187
|
2020-08-19 07:13:41 +00:00
|
|
|
- d: ldc-1.18.0,dub
|
2019-11-22 19:52:54 +00:00
|
|
|
os: osx
|
2020-08-19 07:13:41 +00:00
|
|
|
- d: ldc-1.15.0,dub
|
2019-11-22 19:52:54 +00:00
|
|
|
os: osx
|
2017-06-30 01:30:25 +00:00
|
|
|
include:
|
2020-05-25 09:38:39 +00:00
|
|
|
- d: dmd
|
|
|
|
os: osx
|
|
|
|
env: CONFIG=kqueue
|
|
|
|
- d: ldc
|
|
|
|
os: osx
|
|
|
|
env: CONFIG=kqueue
|
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'
|
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
|
|
|
|
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)
|