mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
697d3dbd69
We don't currently use SQLite for any production deploys, and testing every build against it is overkill. I'm removing this to be a bit nicer to the Travis servers; if we start relying more on SQLite's performance in the future we can always revert this commit.
28 lines
369 B
YAML
28 lines
369 B
YAML
language: php
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
|
|
env:
|
|
- TESTDB=MYSQL
|
|
- TESTDB=PGSQL
|
|
|
|
matrix:
|
|
exclude:
|
|
- php: 5.4
|
|
env: TESTDB=PGSQL
|
|
- php: 5.4
|
|
env: TESTDB=SQLITE
|
|
|
|
before_script:
|
|
- ./tests/travis/before_script ~/builds/ss
|
|
- cd ~/builds/ss
|
|
|
|
script:
|
|
- phpunit -c phpunit.xml.dist
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#silverstripe"
|