diff --git a/travis-ci.sh b/travis-ci.sh index a4a04cd..92cc99a 100755 --- a/travis-ci.sh +++ b/travis-ci.sh @@ -3,19 +3,19 @@ set -e -x -o pipefail # test for successful release build -dub build --combined -b release --compiler=$DC +dub build -b release --compiler=$DC -c $CONFIG # test for successful 32-bit build if [ "$DC" == "dmd" ]; then - dub build --combined --arch=x86 + dub build --arch=x86 -c $CONFIG fi -dub test --combined --compiler=$DC +dub test --compiler=$DC -c $CONFIG if [ ${BUILD_EXAMPLE=1} -eq 1 ]; then for ex in $(\ls -1 examples/*.d); do echo "[INFO] Building example $ex" - dub build --compiler=$DC --single $ex + dub build --compiler=$DC --single $ex # --override-config eventcore/$CONFIG done rm -rf examples/.dub/ rm examples/*-example @@ -23,6 +23,6 @@ fi if [ ${RUN_TEST=1} -eq 1 ]; then for ex in `\ls -1 tests/*.d`; do echo "[INFO] Running test $ex" - dub --temp-build --compiler=$DC --single $ex + dub --temp-build --compiler=$DC --single $ex # --override-config eventcore/$CONFIG done fi