2013-03-29 10:07:05 +01:00
|
|
|
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
|
2016-07-15 17:05:34 +02:00
|
|
|
sudo: false
|
|
|
|
|
2016-03-18 12:51:28 +01:00
|
|
|
language: php
|
2013-03-11 01:44:38 +01:00
|
|
|
|
2016-07-15 17:05:34 +02:00
|
|
|
php:
|
|
|
|
- 5.3
|
|
|
|
- 5.4
|
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2015-07-20 17:08:28 +02:00
|
|
|
|
2013-03-11 01:44:38 +01:00
|
|
|
env:
|
2016-07-15 17:28:02 +02:00
|
|
|
- DB=MYSQL CORE_RELEASE=3.2
|
2013-03-11 01:44:38 +01:00
|
|
|
|
|
|
|
matrix:
|
2013-03-29 10:07:05 +01:00
|
|
|
include:
|
2016-07-15 17:28:02 +02:00
|
|
|
- php: 5.6
|
2015-07-20 17:08:28 +02:00
|
|
|
env: DB=MYSQL CORE_RELEASE=3
|
2016-07-15 17:28:02 +02:00
|
|
|
- php: 5.6
|
|
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
|
|
|
- php: 5.6
|
|
|
|
env: DB=MYSQL CORE_RELEASE=3.3
|
|
|
|
- php: 5.6
|
|
|
|
env: DB=MYSQL CORE_RELEASE=3.4
|
2016-12-20 15:49:23 +01:00
|
|
|
- php: 5.6
|
|
|
|
env: DB=MYSQL CORE_RELEASE=3.5
|
2013-03-11 01:44:38 +01:00
|
|
|
|
|
|
|
before_script:
|
2016-07-15 17:05:34 +02:00
|
|
|
- composer self-update || true
|
|
|
|
- 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
|
|
|
|
- composer install
|
2013-03-11 01:44:38 +01:00
|
|
|
|
2016-03-18 12:51:28 +01:00
|
|
|
script:
|
2016-12-20 15:49:23 +01:00
|
|
|
- vendor/bin/phpunit dms/tests
|