mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Add travis-ci configuration
This commit is contained in:
parent
e3124b53e6
commit
5808916bdf
22
.travis.yml
Normal file
22
.travis.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
language: d
|
||||||
|
|
||||||
|
#compiler:
|
||||||
|
# - dmd
|
||||||
|
|
||||||
|
install:
|
||||||
|
# dmd
|
||||||
|
# dub
|
||||||
|
- DMD_VER=2.065.0
|
||||||
|
- DMD=dmd_${DMD_VER}-0_amd64.deb
|
||||||
|
- DUB_VER=0.9.21
|
||||||
|
- DUB=dub-${DUB_VER}-linux-x86_64
|
||||||
|
- wget http://downloads.dlang.org/releases/2014/${DMD}
|
||||||
|
- sudo dpkg -i ${DMD} || true
|
||||||
|
- sudo apt-get -y update || true
|
||||||
|
- sudo apt-get -fy install || true
|
||||||
|
- sudo dpkg -i ${DMD}
|
||||||
|
- wget http://code.dlang.org/files/${DUB}.tar.gz
|
||||||
|
- sudo tar -C /usr/local/bin -zxf ${DUB}.tar.gz
|
||||||
|
|
||||||
|
script:
|
||||||
|
- dub test --config=unittest
|
Loading…
Reference in a new issue