eventcore/.travis.yml

47 lines
878 B
YAML
Raw Normal View History

2016-06-18 05:23:04 +00:00
language: d
2017-01-22 11:42:10 +00:00
os:
- linux
- osx
2016-06-18 05:23:04 +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
# latest 4 versions plus the oldest supported version should be present
- dmd-2.087.1
- dmd-2.076.1
- ldc-1.16.0
- ldc-1.15.0
- ldc-1.14.0
- ldc-1.13.0
- ldc-1.12.0
2017-12-17 11:09:29 +00:00
- ldc-1.6.0
2016-10-07 18:54:22 +00:00
- dmd-beta
- dmd-2.086.1
- dmd-2.085.1
- dmd-2.084.1
2016-06-18 05:23:04 +00:00
2016-12-19 21:23:49 +00:00
env:
- CONFIG=select
- CONFIG=epoll
- CONFIG=kqueue
2016-12-19 21:23:49 +00:00
- CONFIG=libasync
matrix:
allow_failures:
2017-06-24 22:47:49 +00:00
- d: dmd-beta
exclude:
2017-01-22 21:09:10 +00:00
- env: CONFIG=libasync
- os: osx
env: CONFIG=epoll
- os: linux
env: CONFIG=kqueue
2017-06-24 22:47:49 +00:00
- os: osx
d: dmd-beta
2016-12-19 21:23:49 +00:00
2016-06-18 05:23:04 +00:00
script: ./travis-ci.sh
sudo: false