From b79d5dc61aae2b5dbc13f015e5bf7baf75cca34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 23 Jun 2017 12:18:43 +0200 Subject: [PATCH 1/3] Fix HHVM build for now again and ignore future HHVM build errors --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0d6fd77..0dcd920 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,14 @@ php: - 5.5 - 5.6 - 7 - - hhvm + +# also test against HHVM, but require "trusty" and ignore errors +matrix: + include: + - php: hhvm + dist: trusty + allow_failures: + - php: hhvm install: - composer install --no-interaction From 98ae1a9cb06d332aaa0405a68aa89e39681fc403 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 2/3] 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 0dcd920..d1d1719 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,9 @@ php: - 5.6 - 7 +# 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 fc765767a59cf95bc99c83800cb49e300b93efe8 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 3/3] 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 d1d1719..2dd8a6b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,20 @@ language: php php: - - 5.3 +# - 5.3 # requires old distro, see below - 5.4 - 5.5 - 5.6 - 7 + - 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