mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
f874e30ad3
Conflicts: .travis.yml
26 lines
539 B
YAML
26 lines
539 B
YAML
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
language: php
|
|
php:
|
|
- 5.5
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
- DB=MYSQL CORE_RELEASE=master
|
|
- DB=PGSQL CORE_RELEASE=master
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.6
|
|
env: DB=MYSQL CORE_RELEASE=master
|
|
|
|
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 translatable/tests/
|