From 3245c4183f4ad43830fe471e09ce831a9291f153 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 19 Jun 2017 17:27:06 +0900 Subject: [PATCH] Remove HHVM from Travis CI test suite --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index a9918719e..5b9dd5741 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,21 +4,16 @@ php: - 5.6 - 7.0 - 7.1 -- hhvm -matrix: - allow_failures: - - php: hhvm sudo: false before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix" - mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')" -- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php -S localhost:8000 & fi +- php -S localhost:8000 & - wget http://codeception.com/releases/2.1.11/codecept.phar script: - php codecept.phar build -- if [[ $TRAVIS_PHP_VERSION == "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis --skip install; fi -- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis; fi +- php codecept.phar run -d --fail-fast --env travis - grunt lint notifications: email: false