Merge pull request #430 from skl131313/travis-dub

Refactor travis config to include osx, dmd-beta, and dub.
This commit is contained in:
skl131313 2017-05-12 13:30:13 -04:00 committed by GitHub
commit e844a98f4d
2 changed files with 21 additions and 3 deletions

12
.travis.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
dub build --build=release
git submodule update --init --recursive
if [ $DC = ldc2 ]; then
make test DC=ldmd2
else
make test
fi

View File

@ -1,5 +1,11 @@
sudo: false
language: d
script:
- git submodule update --init --recursive
- make test
d:
- dmd-beta
- dmd
- ldc
os:
- linux
- osx
script: ./.travis.sh