diff --git a/.travis.sh b/.travis.sh index c720355..daa5661 100755 --- a/.travis.sh +++ b/.travis.sh @@ -2,11 +2,12 @@ set -e -dub build --build=release -git submodule update --init --recursive - -if [ $DC = ldc2 ]; then +if [[ $BUILD == dub ]]; then + dub test +elif [[ $DC == ldc2 ]]; then + git submodule update --init --recursive make test DC=ldmd2 else + git submodule update --init --recursive make test fi diff --git a/.travis.yml b/.travis.yml index ef27f81..c3febfe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,5 +9,8 @@ d: os: - linux - osx +env: + - BUILD= + - BUILD=dub script: ./.travis.sh diff --git a/dub.json b/dub.json index 3b0e457..29be105 100644 --- a/dub.json +++ b/dub.json @@ -5,7 +5,10 @@ "authors": ["Brian Schott"], "license" : "Boost Software License - Version 1.0", "targetType": "executable", - "versions": ["built_with_dub"], + "versions": [ + "built_with_dub", + "StdLoggerDisableWarning" + ], "dependencies": { "libdparse": "~>0.7.0", "dsymbol": "~>0.2.0",