dyaml/.travis.yml
Matthias Klumpp 09f3e9bd81 travis: Limit ninja jobs
This is needed because Ninja sees too many CPUs in Travis' container,
and therefore spawns a lot of jobs which leads Travis to occasionally
kill a ninja process.
Limiting the jobs protects against that behavior.
2018-01-07 20:48:17 +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; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pip3 install meson; 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)