mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
PHP7.3 added to the build setting.
This commit is contained in:
parent
b1a93df604
commit
e43db36d4e
1 changed files with 10 additions and 1 deletions
11
.travis.yml
11
.travis.yml
|
@ -11,6 +11,7 @@ php:
|
|||
- 7.0
|
||||
- 7.1
|
||||
- 7.2
|
||||
- 7.3
|
||||
|
||||
env:
|
||||
matrix:
|
||||
|
@ -41,13 +42,21 @@ matrix:
|
|||
|
||||
- php: 7.2
|
||||
env: DB=mysql PHPUNIT=5.7.19
|
||||
|
||||
- php: 7.3
|
||||
env: DB=mysql PHPUNIT=5.7.19
|
||||
allow_failures:
|
||||
- php: 7.3
|
||||
env: DB=mysql PHPUNIT=5.7.19
|
||||
exclude:
|
||||
- php: 7.2
|
||||
env: DB=mysql
|
||||
- php: 7.3
|
||||
env: DB=mysql
|
||||
|
||||
|
||||
before_script:
|
||||
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.2" ]] ; then pear config-set preferred_state snapshot && yes "" | pecl install mcrypt ; fi
|
||||
- if [[ ${TRAVIS_PHP_VERSION:0:3} =~ ^7\.[23]$ ]] ; then pear config-set preferred_state snapshot && yes "" | pecl install mcrypt ; fi
|
||||
- composer require "phpunit/phpunit=$PHPUNIT"
|
||||
- echo "require_once 'vendors/autoload.php';" >> app/Config/bootstrap.php
|
||||
- sudo locale-gen de_DE
|
||||
|
|
Loading…
Reference in a new issue