php-ml/.travis.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2016-04-10 09:50:24 +00:00
language: php
2016-06-30 21:42:45 +00:00
2016-07-01 20:05:20 +00:00
matrix:
fast_finish: true
2016-06-30 21:42:45 +00:00
2016-07-01 20:05:20 +00:00
include:
2016-12-12 18:12:26 +00:00
- os: linux
php: '7.1'
env: DISABLE_XDEBUG="true" STATIC_ANALYSIS="true"
2016-12-12 18:12:26 +00:00
2017-11-13 15:54:04 +00:00
- os: linux
php: '7.2'
env: PHPUNIT_FLAGS="--coverage-clover build/logs/clover.xml"
2017-11-13 15:54:04 +00:00
2016-07-01 20:05:20 +00:00
- os: osx
osx_image: xcode7.3
language: generic
env:
- _OSX=10.11
- _PHP: php71
2016-07-01 20:05:20 +00:00
before_install:
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then /usr/bin/env bash bin/prepare_osx_env.sh ; fi
- if [[ $DISABLE_XDEBUG == "true" ]]; then phpenv config-rm xdebug.ini; fi
2016-07-01 20:05:20 +00:00
install:
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then /usr/bin/env bash bin/handle_brew_pkg.sh "${_PHP}" ; fi
2016-07-01 20:05:20 +00:00
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --no-interaction --ignore-platform-reqs
2016-06-30 21:42:45 +00:00
script:
- vendor/bin/phpunit $PHPUNIT_FLAGS
- if [[ $STATIC_ANALYSIS != "" ]]; then composer check-cs; fi
- if [[ $STATIC_ANALYSIS != "" ]]; then composer phpstan; fi
after_success:
- |
if [[ $PHPUNIT_FLAGS != "" ]]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
php coveralls.phar --verbose;
fi