Merge pull request #807 from WebFreak001/add-minmax-dub
check libdparse & dsymbol with min/max dub version
This commit is contained in:
commit
affa29a426
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 206a2e6abd97b4462f3a320e4f2d23986fad3cff
|
Loading…
Reference in New Issue