2013-03-29 10:19:52 +01:00
|
|
|
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
|
|
|
|
language: php
|
|
|
|
php:
|
|
|
|
- 5.3
|
|
|
|
|
2015-07-20 17:05:32 +02:00
|
|
|
sudo: false
|
|
|
|
|
2013-03-29 10:19:52 +01:00
|
|
|
env:
|
|
|
|
- DB=MYSQL CORE_RELEASE=master
|
|
|
|
- DB=PGSQL CORE_RELEASE=master
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- php: 5.4
|
|
|
|
env: DB=MYSQL CORE_RELEASE=master
|
|
|
|
|
|
|
|
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:
|
2015-07-20 17:05:32 +02:00
|
|
|
- phpunit reports/tests/
|