Unverified Commit 296b0e51 authored by Sergei Morozov's avatar Sergei Morozov Committed by GitHub

Merge pull request #3347 from BenMorel/travis_php73

Travis CI tests on PHP 7.3
parents cfe3bec8 c9daea6f
...@@ -21,7 +21,7 @@ before_commands: ...@@ -21,7 +21,7 @@ before_commands:
tools: tools:
external_code_coverage: external_code_coverage:
timeout: 3600 timeout: 3600
runs: 22 # 18x Travis (jobs with COVERAGE=yes) + 3x AppVeyor (jobs with coverage=yes) + 1x ContinuousPHP runs: 27 # 23x Travis (jobs with COVERAGE=yes) + 3x AppVeyor (jobs with coverage=yes) + 1x ContinuousPHP
filter: filter:
excluded_paths: excluded_paths:
......
This diff is collapsed.
...@@ -3,4 +3,9 @@ ...@@ -3,4 +3,9 @@
set -ex set -ex
echo "Installing extension" echo "Installing extension"
pecl install pdo_sqlsrv
if [ "$TRAVIS_PHP_VERSION" == "7.3" ] || [ "$TRAVIS_PHP_VERSION" == "nightly" ] ; then
pecl install pdo_sqlsrv-5.4.0preview
else
pecl install pdo_sqlsrv
fi
...@@ -3,4 +3,9 @@ ...@@ -3,4 +3,9 @@
set -ex set -ex
echo "Installing extension" echo "Installing extension"
pecl install sqlsrv
if [ "$TRAVIS_PHP_VERSION" == "7.3" ] || [ "$TRAVIS_PHP_VERSION" == "nightly" ] ; then
pecl install sqlsrv-5.4.0preview
else
pecl install sqlsrv
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment