Merge pull request #807 from WebFreak001/add-minmax-dub

check libdparse & dsymbol with min/max dub version
This commit is contained in:
Jan Jurzitza 2020-06-10 07:55:56 +02:00 committed by GitHub
commit affa29a426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 2 deletions

3
.gitmodules vendored
View File

@ -17,3 +17,6 @@
[submodule "stdx-allocator"] [submodule "stdx-allocator"]
path = stdx-allocator path = stdx-allocator
url = https://github.com/dlang-community/stdx-allocator.git url = https://github.com/dlang-community/stdx-allocator.git
[submodule "d-test-utils"]
path = d-test-utils
url = https://github.com/dlang-community/d-test-utils.git

View File

@ -3,7 +3,14 @@
set -e set -e
if [[ $BUILD == dub ]]; then if [[ $BUILD == dub ]]; then
dub test if [[ -n $LIBDPARSE_VERSION ]]; then
rdmd ./d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub test
elif [[ -n $DSYMBOL_VERSION ]]; then
rdmd ./d-test-utils/test_with_package.d $DSYMBOL_VERSION dsymbol -- dub test
else
echo 'Cannot run test without LIBDPARSE_VERSION nor DSYMBOL_VERSION environment variable'
exit 1
fi
elif [[ $DC == ldc2 ]]; then elif [[ $DC == ldc2 ]]; then
git submodule update --init --recursive git submodule update --init --recursive
make test DC=ldmd2 make test DC=ldmd2

View File

@ -10,7 +10,10 @@ os:
- osx - osx
env: env:
- BUILD= - BUILD=
- BUILD=dub - BUILD=dub LIBDPARSE_VERSION=min
- BUILD=dub LIBDPARSE_VERSION=max
- BUILD=dub DSYMBOL_VERSION=min
- BUILD=dub DSYMBOL_VERSION=max
branches: branches:
only: only:
- master - master

1
d-test-utils Submodule

@ -0,0 +1 @@
Subproject commit 206a2e6abd97b4462f3a320e4f2d23986fad3cff