Add PHP 7.3 to .travis.yml (nightly is 7.4 now)

This commit is contained in:
Kijin Sung 2018-10-17 18:11:26 +09:00
parent be70765853
commit d6128ed097

View file

@ -5,10 +5,10 @@ php:
- 7.0
- 7.1
- 7.2
- nightly
- 7.3
matrix:
allow_failures:
- php: nightly
- php: 7.3
services:
- mysql
before_script:
@ -16,7 +16,7 @@ before_script:
- mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci"
- mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost"
- mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES"
- if [[ $TRAVIS_PHP_VERSION != "nightly" ]]; then phpenv config-rm xdebug.ini; fi
- if [[ $TRAVIS_PHP_VERSION != "7.3" ]]; then phpenv config-rm xdebug.ini; fi
- wget https://codeception.com/releases/2.3.9/codecept.phar
- php -S localhost:8000 &
script: