test kqueue instead of epoll on macos

This commit is contained in:
Sönke Ludwig 2019-11-02 22:18:29 +01:00
parent 5116ddbd57
commit f23b23f360

View file

@ -25,6 +25,7 @@ d:
env: env:
- CONFIG=select - CONFIG=select
- CONFIG=epoll - CONFIG=epoll
- CONFIG=kqueue
# disabled until the libasync driver of eventcore is more than a stub # disabled until the libasync driver of eventcore is more than a stub
#- CONFIG=libasync #- CONFIG=libasync
@ -32,6 +33,11 @@ matrix:
allow_failures: allow_failures:
- env: CONFIG=libasync - env: CONFIG=libasync
- d: dmd-beta - d: dmd-beta
exclude:
- os: linux
env: CONFIG=kqueue
- os: osx
env: CONFIG=epoll
include: include:
- d: dmd - d: dmd
env: CONFIG='select' DUB_FLAGS='--build unittest-cov --build-mode=singleFile' env: CONFIG='select' DUB_FLAGS='--build unittest-cov --build-mode=singleFile'