vibe-core/.travis.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

2016-06-18 05:01:08 +00:00
language: d
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-07-05 07:31:18 +00:00
- dmd-2.087.1
- dmd-2.078.3
2019-07-05 07:31:18 +00:00
- ldc-1.16.0
- ldc-1.15.0
- ldc-1.14.0
- ldc-1.13.0
- ldc-1.9.0
2019-07-05 07:31:18 +00:00
- dmd-2.086.1
2019-06-04 09:45:45 +00:00
- dmd-2.085.1
- dmd-2.084.1
- dmd-2.079.0
2017-01-15 21:34:36 +00:00
- dmd-beta
2016-06-18 05:01:08 +00:00
env:
- CONFIG=select
- CONFIG=epoll
# disabled until the libasync driver of eventcore is more than a stub
#- CONFIG=libasync
matrix:
allow_failures:
- env: CONFIG=libasync
2017-01-15 21:34:36 +00:00
- d: dmd-beta
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'
before_install:
# Use the dub-updating fork of the installer script until https://github.com/dlang/installer/pull/301 is merged
- wget https://raw.githubusercontent.com/wilzbach/installer-dub/master/script/install.sh -O ~/dlang/install.dub.sh
- . $(bash ~/dlang/install.dub.sh -a dub)
- dub --version
2016-06-18 05:01:08 +00:00
script: ./travis-ci.sh
sudo: false
2017-06-30 01:30:25 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)