forked from vibe-d/eventcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
45 lines (39 loc) · 813 Bytes
/
Copy path.travis.yml
File metadata and controls
45 lines (39 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
language: d
os:
- linux
- osx
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
- dmd-2.073.0
- dmd-2.070.2
- ldc-1.1.0
- ldc-1.0.0
- dmd-beta
- dmd-2.072.2
- dmd-2.071.2
env:
- CONFIG=select
- CONFIG=epoll
- CONFIG=kqueue
- CONFIG=libasync
matrix:
allow_failures:
exclude:
- env: CONFIG=libasync
- os: osx
env: CONFIG=epoll
- os: linux
env: CONFIG=kqueue
- os: osx
d: dmd-2.071.2
- os: osx
d: dmd-2.070.2
- os: osx
d: ldc-1.1.0
- os: osx
d: ldc-1.0.0
script: ./travis-ci.sh
sudo: false