From 5f092fc749631e6d2ea4d7c04d2daec461323312 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 ec59678..db94309 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,9 @@ php: - 7.0 - 7.1 +# 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 b573d68c7a3be319298b3886e1ac8c2080e4e4ff 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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index db94309..01fde34 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,21 @@ 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 # 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