2014-06-18 03:20:24 +02:00
|
|
|
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
|
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
|
|
|
- 5.3
|
|
|
|
|
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
- DB=MYSQL CORE_RELEASE=3.1
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- php: 5.3
|
|
|
|
env: DB=PGSQL CORE_RELEASE=3.1
|
|
|
|
- php: 5.4
|
2014-07-21 00:14:56 +02:00
|
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
2014-06-18 03:20:24 +02:00
|
|
|
- php: 5.5
|
2014-07-21 00:14:56 +02:00
|
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
2014-06-18 03:20:24 +02:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- phpenv rehash
|
|
|
|
- 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:
|
|
|
|
- phpunit testsession/tests/unit/
|