Remove build configuration selection.

This commit is contained in:
Sönke Ludwig 2016-06-18 07:28:42 +02:00
parent cf4a5485e9
commit 9f672e75ac
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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