dyaml/.travis.yml
Matthias Klumpp 39afcbc850 ci: Enable Meson builds again
This reverts commit 25e3a4fa65 and adds a
dependency on a bugfixed version of Meson.
2018-02-23 03:10:31 +01:00

37 lines
1.2 KiB
YAML

dist: trusty
sudo: false
language: d
os:
- linux
#- osx
d:
- dmd
- dmd-beta
- dmd-nightly
- ldc
- ldc-beta
before_install:
- pyenv global system 3.6
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja python3; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pip3 install 'meson>=0.44.1'; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pip3 install 'meson>=0.44.1'; fi
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then mkdir .ntmp && curl -L https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip -o .ntmp/ninja-linux.zip; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then unzip .ntmp/ninja-linux.zip -d .ntmp; fi
before_script:
- export PATH=$PATH:$PWD/.ntmp
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then meson build && ninja -j8 -C build; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ninja -j8 -C build test -v; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then SDKROOT=$(xcodebuild -version -sdk macosx Path) meson build && ninja -j8 -C build test; fi
- dub build
- dub test --build=unittest-cov
after_success:
- bash <(curl -s https://codecov.io/bash)