Skip to content

Commit 0099439

Browse files
committed
Merge pull request #254 from Nyholm/patch-1
Added PHP 5.6 and HHVM to travis.yml
2 parents feee66a + e5707b3 commit 0099439

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.travis.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ php:
44
- 5.3
55
- 5.4
66
- 5.5
7-
7+
- 5.6
8+
- hhvm
9+
810
env:
911
- SYMFONY_VERSION=2.3.*
10-
- SYMFONY_VERSION=2.4.*
11-
- SYMFONY_VERSION=dev-master
1212

1313
before_script:
1414
- composer self-update
15-
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
15+
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "memory_limit = -1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;'
1616
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
1717

1818
script: phpunit --coverage-text
@@ -24,3 +24,12 @@ notifications:
2424
matrix:
2525
allow_failures:
2626
- env: SYMFONY_VERSION=dev-master
27+
- php: hhvm
28+
- php: 5.6
29+
include:
30+
- php: 5.5
31+
env: SYMFONY_VERSION=2.4.*
32+
- php: 5.5
33+
env: SYMFONY_VERSION=2.5.*
34+
- php: 5.5
35+
env: SYMFONY_VERSION=dev-master

0 commit comments

Comments
 (0)