-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dlang:master' into master
- Loading branch information
Showing
17 changed files
with
464 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
set -v -e -o pipefail | ||
|
||
vibe_ver=$(jq -r '.versions | .["vibe-d"]' < dub.selections.json) | ||
dub fetch vibe-d@$vibe_ver # get optional dependency | ||
dub test --compiler=${DC} -c library-nonet | ||
|
||
export DMD="$(command -v $DMD)" | ||
|
||
./build.d -preview=dip1000 -preview=in -w -g -debug | ||
|
||
if [ "$COVERAGE" = true ]; then | ||
# library-nonet fails to build with coverage (Issue 13742) | ||
dub test --compiler=${DC} -b unittest-cov | ||
./build.d -cov | ||
else | ||
./build.d | ||
DUB=`pwd`/bin/dub DC=${DC} dub --single ./test/run-unittest.d | ||
DUB=`pwd`/bin/dub DC=${DC} test/run-unittest.sh | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.