From 9f672e75aca33484891727dbe5cf4f17e12b7faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Sat, 18 Jun 2016 07:28:42 +0200 Subject: [PATCH] Remove build configuration selection. --- .travis.yml | 2 +- travis-ci.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ef6673..74d21c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ d: # catching most DMD version related build failures early - dmd-2.071.0 - ldc-1.0.0 - - dmd-2.070.0 + - dmd-2.070.2 script: ./travis-ci.sh diff --git a/travis-ci.sh b/travis-ci.sh index ef6cea6..ee3ffb9 100755 --- a/travis-ci.sh +++ b/travis-ci.sh @@ -3,14 +3,14 @@ set -e -x -o pipefail # test for successful release build -dub build --combined -b release --compiler=$DC --config=${VIBED_DRIVER=libevent} +dub build --combined -b release --compiler=$DC # test for successful 32-bit build if [ "$DC" == "dmd" ]; then dub build --combined --arch=x86 fi -dub test --combined --compiler=$DC --config=${VIBED_DRIVER=libevent} +dub test --combined --compiler=$DC if [ ${BUILD_EXAMPLE=1} -eq 1 ]; then for ex in $(\ls -1 examples/); do