From d76ac70893437cc5ac773940e134bde5f08516ec Mon Sep 17 00:00:00 2001 From: Jan Jurzitza Date: Mon, 8 Jun 2020 14:33:57 +0200 Subject: [PATCH] check libdparse & dsymbol with min/max dub version --- .gitmodules | 3 +++ .travis.sh | 9 ++++++++- .travis.yml | 5 ++++- d-test-utils | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) create mode 160000 d-test-utils diff --git a/.gitmodules b/.gitmodules index e791041..a37c54c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,3 +17,6 @@ [submodule "stdx-allocator"] path = stdx-allocator 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 diff --git a/.travis.sh b/.travis.sh index fc8bbd2..de8bca1 100755 --- a/.travis.sh +++ b/.travis.sh @@ -3,7 +3,14 @@ set -e 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 if [[ -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 git submodule update --init --recursive make test DC=ldmd2 diff --git a/.travis.yml b/.travis.yml index ef557f9..ef2086c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,10 @@ os: - osx env: - BUILD= -- BUILD=dub +- BUILD=dub LIBDPARSE_VERSION=min +- BUILD=dub LIBDPARSE_VERSION=max +- BUILD=dub DSYMBOL_VERSION=min +- BUILD=dub DSYMBOL_VERSION=max branches: only: - master diff --git a/d-test-utils b/d-test-utils new file mode 160000 index 0000000..206a2e6 --- /dev/null +++ b/d-test-utils @@ -0,0 +1 @@ +Subproject commit 206a2e6abd97b4462f3a320e4f2d23986fad3cff