silverstripe-comments/.travis.yml

33 lines
788 B
YAML
Raw Normal View History

language: php
2013-03-29 09:33:51 +01:00
dist: trusty
addons:
apt:
packages:
- tidy
2015-11-19 02:18:53 +01:00
2013-03-29 09:33:51 +01:00
matrix:
include:
- php: '5.6'
env: DB=MYSQL CORE_RELEASE=3.6
- php: '7.0'
env: DB=MYSQL CORE_RELEASE=3.7
- php: '7.1'
env: DB=PGSQL CORE_RELEASE=3.7
- php: '7.2'
env: DB=MYSQL CORE_RELEASE=3.7
- php: '7.3'
env: DB=MYSQL CORE_RELEASE=3.7
2013-03-29 09:33:51 +01:00
before_script:
- phpenv rehash
2015-11-19 02:18:53 +01:00
- composer self-update || true
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
# Install suggested modules in order to maximize test coverage
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require "ezyang/htmlpurifier:4.*,silverstripe/cms:~3.1"
2015-11-19 02:18:53 +01:00
- cd ~/builds/ss
2013-03-29 09:33:51 +01:00
2015-11-19 02:18:53 +01:00
script:
- vendor/bin/phpunit comments/tests