From d5bdc210dfc44c4f598a0aec32fb010150954ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 4 Aug 2017 12:03:17 +0200 Subject: [PATCH 1/2] Lock Travis distro so new future defaults will not break the build --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index e93c46f..a416870 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,9 @@ php: sudo: false +# lock distro so new future defaults will not break the build +dist: precise + # also test against HHVM, but require "trusty" and ignore errors matrix: include: From 505dfbff0417164b959e653fabce1e213eb1c6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 4 Aug 2017 12:09:49 +0200 Subject: [PATCH 2/2] Update Travis distro to precise, except for legacy PHP --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index a416870..414e2a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,28 +1,28 @@ language: php php: - - 5.3 +# - 5.3 # requires old distro, see below - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 + - hhvm # ignore errors, see below sudo: false # lock distro so new future defaults will not break the build -dist: precise +dist: trusty -# also test against HHVM, but require "trusty" and ignore errors matrix: include: - - php: hhvm - dist: trusty + - php: 5.3 + dist: precise allow_failures: - php: hhvm install: - - composer install --prefer-source --no-interaction + - composer install --no-interaction script: - vendor/bin/phpunit --coverage-text