mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
22 lines
500 B
YAML
22 lines
500 B
YAML
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
language: php
|
|
php:
|
|
- 5.3
|
|
|
|
env:
|
|
- DB=MYSQL CORE_RELEASE=3.1
|
|
- 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:
|
|
- phpunit blog/tests/ |