mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
30 lines
630 B
YAML
30 lines
630 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.4
|
|
- 5.6
|
|
- hhvm-nightly
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm-nightly
|
|
|
|
addons:
|
|
postgresql: "9.3"
|
|
|
|
install:
|
|
- composer install --dev
|
|
- cp Tests/Fixtures/App/config/parameters.travis.yml Tests/Fixtures/App/config/parameters.yml
|
|
|
|
before_script:
|
|
- php Tests/Fixtures/App/console --env=test cache:warmup
|
|
- psql -c 'create database test0;' -U postgres
|
|
- php Tests/Fixtures/App/console doctrine:schema:create --env=test
|
|
- php Tests/Fixtures/App/console doctrine:fixtures:load --env=test
|
|
|
|
script: phpunit --coverage-text
|
|
|
|
notifications:
|
|
email:
|
|
- info@champs-libres.coop
|