forked from rejectedsoftware/diet-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (46 loc) · 1.03 KB
/
.travis.yml
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
48
49
50
51
52
53
language: d
dist: xenial
branches:
only:
- master
addons:
apt:
packages:
- pkg-config
- zlib1g-dev
- libssl-dev
# The GC was broken in some releases,
# leading to a segfaulting DUB.
# WHen compiler,dub is used, it gets the latest dub.
d:
- dmd-2.093.1
- dmd-2.092.1
- dmd-2.091.1
- dmd-2.090.1
- dmd-2.089.1,dub
- dmd-2.088.1,dub
- ldc-1.23.0
- ldc-1.22.0
- ldc-1.21.0
- ldc-1.20.1
- ldc-1.19.0,dub
#before_install:
#- pyenv global system 3.6
#- pip3 install meson>=0.40
#install:
#- mkdir .ntmp
#- curl -L https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip -o .ntmp/ninja-linux.zip
#- unzip .ntmp/ninja-linux.zip -d .ntmp
#before_script:
#- export PATH=$PATH:$PWD/.ntmp
script:
- dub build -b release
- dub test
- dub build --root examples/htmlgenerator
- dub build --root examples/htmlserver
- dub build -b ddox
# test building with Meson
- mkdir build && cd build
#- meson ..
#- ninja -j4
#- DESTDIR=/tmp/diet_inst_target ninja install