From ccdd2f88039ca7bb409300aed7c44e499266d9af Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Wed, 8 Jan 2020 07:33:55 +0100 Subject: [PATCH 1/2] Drop nightly builds as gives zero value feedback For what I understand reading the history, nightly was something used to represent the next PHP version. This was a good intention, but at the end Travis builds as nightly has very little in common with whatever lands as a final release. So building against nightly is only a waste of electricity, and no one reads its log because it gives zero value: nightly errors may disappears once new PHP version is published. --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2fc1f56d..4ffe7abf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,11 +33,6 @@ matrix: - php: 7.3 env: - DEPS=latest - - php: nightly - env: - - DEPS=latest - allow_failures: - - php: nightly before_install: - travis_retry composer self-update From eaf34503d121ae0ae260fe15fee1fd0b19c1b464 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Wed, 8 Jan 2020 07:35:17 +0100 Subject: [PATCH 2/2] Add test against PHP 7.4 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4ffe7abf..4d66b55d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,6 +33,9 @@ matrix: - php: 7.3 env: - DEPS=latest + - php: 7.4 + env: + - DEPS=latest before_install: - travis_retry composer self-update