From 82a14bb4a2e5f267972c1205acc2d769aa861b03 Mon Sep 17 00:00:00 2001 From: bocharsky-bw Date: Thu, 20 Apr 2017 23:55:19 +0300 Subject: [PATCH 1/3] Use the newer stack for HHVM on Tracis CI --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 927f19b27..1943d9365 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,11 @@ matrix: - php: 7.1 - php: hhvm allow_failures: - - php: hhvm + # Use the newer stack for HHVM as HHVM does not support Precise anymore since a long time and so Precise has an outdated version + - php: hhvm-3.18 + sudo: required + dist: trusty + group: edge before_install: - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi From ba62e430d167c54066ff99e0700decca6cb301df Mon Sep 17 00:00:00 2001 From: bocharsky-bw Date: Fri, 21 Apr 2017 00:03:51 +0300 Subject: [PATCH 2/3] Do not specify HHVM version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1943d9365..c41f7c0f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ matrix: - php: hhvm allow_failures: # Use the newer stack for HHVM as HHVM does not support Precise anymore since a long time and so Precise has an outdated version - - php: hhvm-3.18 + - php: hhvm sudo: required dist: trusty group: edge From faa1497c3ee6ae235c2170f8880e29ec90bb32c8 Mon Sep 17 00:00:00 2001 From: bocharsky-bw Date: Fri, 21 Apr 2017 00:49:39 +0300 Subject: [PATCH 3/3] Fix wrong place for HHVM extra parameters --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c41f7c0f9..9e954dc14 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,13 +12,13 @@ matrix: - php: 5.6 - php: 7.0 - php: 7.1 - - php: hhvm - allow_failures: # Use the newer stack for HHVM as HHVM does not support Precise anymore since a long time and so Precise has an outdated version - php: hhvm sudo: required dist: trusty group: edge + allow_failures: + - php: hhvm before_install: - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi