mirror of
https://github.com/silverstripe/silverstripe-tagfield
synced 2024-10-22 11:05:32 +02:00
32 lines
691 B
YAML
32 lines
691 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
- DB=MYSQL CORE_RELEASE=3.1
|
|
|
|
before_script:
|
|
- 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:
|
|
- vendor/bin/phpunit --coverage-clover coverage.clover tagfield/tests
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover --repository=g/silverstripe-labs/silverstripe-tagfield
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: 7.0
|