From 43863d63bc5b7b817020a1c6f7b6b5a171ab0ccf Mon Sep 17 00:00:00 2001 From: Anton Fediushin Date: Wed, 2 Aug 2017 20:37:31 +0200 Subject: [PATCH] dub test always fails for gdc --- .travis.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.sh b/.travis.sh index b7a0517..f663744 100644 --- a/.travis.sh +++ b/.travis.sh @@ -1,6 +1,8 @@ #!/bin/bash -dub test --compiler=$DC +if [ "$DC" != gdc ]; then + dub test --compiler=$DC +fi echo "Building $(git tag -l --points-at HEAD) for $TRAVIS_OS_NAME x86_64 using $DC" dub build -b release --compiler=$DC