Merge pull request #332 from acelaya/feature/php7.3

Do not allow failures on PHP 7.3 build
This commit is contained in:
Alejandro Celaya 2018-12-29 11:53:44 +01:00 committed by GitHub
commit 29d49dfbf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View file

@ -9,10 +9,6 @@ php:
- 7.2
- 7.3
matrix:
allow_failures:
- php: 7.3
before_install:
- echo 'extension = memcached.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo 'extension = apcu.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

View file

@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
#### Changed
* [#320](https://github.com/shlinkio/shlink/issues/320) Replaced query builder by plain DQL for all queries which do not need to be dynamically generated.
* [#330](https://github.com/shlinkio/shlink/issues/330) No longer allow failures on PHP 7.3 envs during project CI build.
#### Deprecated