From 643f39f12ff6cb3836c156dff3d220f4710d9927 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Wed, 28 Apr 2021 09:14:29 +0200 Subject: [PATCH] add more PHP versions --- .travis.yml | 3 +++ tests/travis/setup_arangodb.sh | 15 +++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/.travis.yml b/.travis.yml index eede20e6..6e985cd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,9 @@ matrix: - php: '5.6' - php: '7.0' - php: '7.1' + - php: '7.2' + - php: '7.3' + - php: '7.4' allow_failures: - php: hhvm diff --git a/tests/travis/setup_arangodb.sh b/tests/travis/setup_arangodb.sh index 2950ead8..6ca99958 100644 --- a/tests/travis/setup_arangodb.sh +++ b/tests/travis/setup_arangodb.sh @@ -17,6 +17,21 @@ wget "https://phar.phpunit.de/phpunit-6.0.phar" mv phpunit-6.0.phar ./phpunit fi +if [[ "$TRAVIS_PHP_VERSION" == "7.2" ]] ; then +wget "https://phar.phpunit.de/phpunit-6.0.phar" +mv phpunit-6.0.phar ./phpunit +fi + +if [[ "$TRAVIS_PHP_VERSION" == "7.3" ]] ; then +wget "https://phar.phpunit.de/phpunit-6.0.phar" +mv phpunit-6.0.phar ./phpunit +fi + +if [[ "$TRAVIS_PHP_VERSION" == "7.4" ]] ; then +wget "https://phar.phpunit.de/phpunit-6.0.phar" +mv phpunit-6.0.phar ./phpunit +fi + if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]] ; then wget "https://phar.phpunit.de/phpunit-6.0.phar" mv phpunit-6.0.phar ./phpunit