mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
977a03dcc2
We haven't addressed this module for 3.2 compat yet but added more versions of php for 3.1 core.
31 lines
652 B
YAML
31 lines
652 B
YAML
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
language: php
|
|
php:
|
|
- 5.3
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
- DB=MYSQL CORE_RELEASE=3.1
|
|
- DB=MYSQL CORE_RELEASE=3.2
|
|
- DB=MYSQL CORE_RELEASE=3
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.4
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
|
- php: 5.5
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
|
- php: 5.6
|
|
env: DB=MYSQL CORE_RELEASE=3.1
|
|
|
|
|
|
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 docsviewer/tests/
|