Refactor travis config to include osx, dmd-beta, ldc2 and dub.

This commit is contained in:
skl131313 2017-05-11 12:35:49 -04:00
parent 1a2232f724
commit a393d5f0be
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 sudo: false
language: d language: d
script: d:
- git submodule update --init --recursive - dmd-beta
- make test - dmd
- ldc
os:
- linux
- osx
script: ./.travis.sh