forked from vibe-d/vibe.d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
47 lines (41 loc) · 1.03 KB
/
.travis.yml
File metadata and controls
47 lines (41 loc) · 1.03 KB
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
46
47
language: d
sudo: false
dist: trusty
services:
- mongodb
- redis-server
addons:
apt:
packages:
- libevent-dev
- libssl-dev
- pkg-config
- zlib1g-dev
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.074.0-rc1
- dmd-2.070.2
- ldc-1.1.1
- ldc-1.0.0
- dmd-2.073.2
- dmd-2.072.2
- dmd-2.071.2
- dmd-beta
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=vibe-core BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:
- d: ldc-1.0.0
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
allow_failures:
- d: dmd-beta
- d: ldc-1.2.0-beta1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: ldc-1.1.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
script: ./travis-ci.sh