Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 707689d

Browse files
committed
Merge pull request zendframework#519 from mhujer/travis-php7-config
Use different php.ini config for PHP 7 Travis builds
2 parents 9b0223a + a081f6b commit 707689d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ before_script:
2525
- mysql -e 'create database zftest;'
2626
- psql -c 'create database zftest;' -U postgres
2727

28-
- if [[ "$TRAVIS_PHP_VERSION" != "5.2" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-add tests/config.ini; fi
28+
- if [[ "$TRAVIS_PHP_VERSION" != "5.2" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7" ]]; then phpenv config-add tests/config.ini; fi
2929
- if [[ "$TRAVIS_PHP_VERSION" == "5.2" ]]; then phpenv config-add tests/php52_config.ini; fi
30+
- if [[ "$TRAVIS_PHP_VERSION" == "7" ]]; then phpenv config-add tests/php7_config.ini; fi
3031

3132
- cp ./tests/TestConfiguration.travis.php ./tests/TestConfiguration.php
3233

tests/php7_config.ini

Whitespace-only changes.

0 commit comments

Comments
 (0)