Skip to content

Commit

Permalink
fixup travis-ci.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Mar 22, 2021
1 parent e1bb847 commit bbb4613
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions travis-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bbb4613

Please sign in to comment.