-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
executable file
·34 lines (28 loc) · 1004 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
env:
- TRANSPORT=jackrabbit
# - TRANSPORT=midgard_sqlite MIDGARD_EXT_VERSION=ratatoskr
# - TRANSPORT=midgard_mysql MIDGARD_EXT_VERSION=ratatoskr
# - TRANSPORT=midgard_sqlite MIDGARD_EXT_VERSION=gjallarhorn
# - TRANSPORT=midgard_mysql MIDGARD_EXT_VERSION=gjallarhorn
- TRANSPORT=doctrine_dbal
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "memory_limit = 1024M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;'
- cp app/config/phpcr_${TRANSPORT}.yml.dist app/config/phpcr.yml
- cp app/config/parameters.yml.dist app/config/parameters.yml
- ./app/tests/travis_${TRANSPORT}.sh
- app/console doctrine:phpcr:workspace:create sandbox_test
- app/console doctrine:phpcr:repository:init -e=test
script: phpunit -c app
notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "[email protected]"