silverstripe-tagfield/.travis.yml

34 lines
750 B
YAML
Raw Normal View History

language: php
2015-09-09 01:07:51 +02:00
php:
2015-09-09 01:07:51 +02:00
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
sudo: false
env:
2015-09-09 01:07:51 +02:00
- DB=MYSQL CORE_RELEASE=3.1
before_script:
2015-09-09 01:07:51 +02:00
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
2015-09-09 01:07:51 +02:00
- vendor/bin/phpunit --coverage-clover coverage.clover tagfield/tests
- wget https://scrutinizer-ci.com/ocular.phar
2015-09-13 23:17:53 +02:00
- git remote rm origin
- git remote add origin git@github.com:silverstripe-labs/silverstripe-tagfield.git
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
2015-09-09 01:07:51 +02:00
branches:
only:
- master
matrix:
allow_failures:
- php: 7.0