From bbb46133a697554b99639c893d9b0fd1502d7f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 22 Mar 2021 12:10:33 +0100 Subject: [PATCH] fixup travis-ci.sh --- travis-ci.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/travis-ci.sh b/travis-ci.sh index fb2eee0c57..59bc4e96ba 100755 --- a/travis-ci.sh +++ b/travis-ci.sh @@ -14,7 +14,6 @@ DUB_ARGS_HTTP_S=$DUB_ARGS if [[ $PARTS =~ (^|,)vibe-http(,|$) ]]; then DUB_ARGS_HTTP="${DUB_ARGS} --override-config vibe-d:http/experimental" - DUB_ARGS_HTTP_S="${DUB_ARGS} --config experimental" fi # TODO: support coverage builds! @@ -46,7 +45,11 @@ if [[ $PARTS =~ (^|,)unittests(,|$) ]]; then dub test :redis --compiler=$DC $DUB_ARGS_HTTP dub test :web --compiler=$DC $DUB_ARGS_HTTP dub test :utils --compiler=$DC $DUB_ARGS - dub test :http --compiler=$DC $DUB_ARGS_HTTP_S + if [[ $PARTS =~ (^|,)vibe-http(,|$) ]]; then + # vibe-http is tested on its own, skip it here + else + dub test :http --compiler=$DC $DUB_ARGS + fi dub test :mail --compiler=$DC $DUB_ARGS dub test :stream --compiler=$DC $DUB_ARGS dub test :crypto --compiler=$DC $DUB_ARGS