Merge pull request #278 from skl131313/travis-dub

Refactor travis config to include dub, osx, and ldc.
This commit is contained in:
skl131313 2017-05-17 11:00:37 -04:00 committed by GitHub
commit b7c3a3686b
2 changed files with 33 additions and 2 deletions

18
.travis.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
set -e
if [[ $BUILD == dub ]]; then
dub build --build=release
mkdir bin
mv dfmt ./bin
elif [[ $DC == ldc2 ]]; then
git submodule update --init --recursive
make ldc -j2
else
git submodule update --init --recursive
make debug -j2
fi
cd tests && ./test.sh

View File

@ -1,3 +1,16 @@
sudo: false
language: d
script:
- git submodule update --init --recursive && make test
d:
- dmd-beta
- dmd
- ldc
os:
- linux
- osx
env:
- BUILD=
- BUILD=dub
script: ./.travis.sh