From 115c9eab1b0b11b8354873ea5c05053e2fa5d926 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, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1a1af248..ce175bd1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,15 @@ php: - nightly - hhvm +# also test against HHVM, but require "trusty" and ignore errors +matrix: + include: + - php: hhvm + dist: trusty + allow_failures: + - php: hhvm + - php: nightly + install: - composer install From ff5e3436cf9edc911633e9ba3f4c9f5e276663c2 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 ce175bd1..35d7a77e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,9 @@ php: - nightly - hhvm +# 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 66abc757d1ff9da22f17d9c984b82891fe7ffaab 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 --- .travis.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 35d7a77e..bcbe642f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,17 +6,13 @@ php: - 5.6 - 7.0 - 7.1 - - nightly - - hhvm + - nightly # ignore errors, see below + - 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 allow_failures: - php: hhvm - php: nightly