diff --git a/.travis.yml b/.travis.yml index dbda060..39b3bb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,10 +13,13 @@ d: - dmd-nightly - ldc-latest-ci +env: + global: + - TEST_MESON=true + before_install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update && sudo apt-get -y install ninja-build python3-pip python3-setuptools; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install ninja; fi - - pip3 install meson + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update && sudo apt-get -y install python3-pip python3-setuptools; fi + - pip3 install meson ninja matrix: include: diff --git a/meson.build b/meson.build index 35f909e..677f166 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('taggedalgebraic', 'd', meson_version: '>=0.50', - version: '0.11.9' + version: '0.11.12' ) project_soversion = '0' diff --git a/travis.sh b/travis.sh index 10f05e5..8fcade5 100755 --- a/travis.sh +++ b/travis.sh @@ -11,5 +11,7 @@ if [ ! -z "${COVERAGE:-}" ]; then else dub test - meson build && ninja -C build || echo Warning: Meson build failed! + if [ "x$TEST_MESON" = "xtrue" ] && [ "x$(dmd --version | head -n1)" != "xDMD64 D Compiler v2.085.1" ]; then + meson build && ninja -C build + fi fi