From 2edfb6fcec2f3365612b5b16689c89e05f50936f Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Mon, 10 Feb 2020 12:37:29 -0600 Subject: [PATCH] Skip ext-parallel on PHP 7.1 --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 18167ca..6d25fa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,13 @@ php: - 7.1 - 7.2 - 7.3 - - 7.4snapshot + - 7.4 - nightly sudo: false matrix: allow_failures: - - php: 7.4snapshot - php: nightly fast_finish: true @@ -20,11 +19,14 @@ env: install: - composer update -n --prefer-dist - # pthreads is now only supported on PHP 7.2+ + # ext-pthreads is only supported on PHP 7.2+ - if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then travis/install-pthreads.sh; fi - - travis/install-parallel.sh; + # ext-parallel is only supported on PHP 7.2+ + - if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then + travis/install-parallel.sh; + fi - wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar - chmod +x coveralls.phar