Commit c9daea6f authored by Michael Moravec's avatar Michael Moravec Committed by Benjamin Morel

CI: Test against PHP 7.3 on Travis

Co-authored-by: 's avatarMichael Moravec <me@majkl.me>
Co-authored-by: 's avatarBenjamin Morel <benjamin.morel@gmail.com>
parent ff6cbdbc
......@@ -21,7 +21,7 @@ before_commands:
tools:
external_code_coverage:
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:
excluded_paths:
......
This diff is collapsed.
......@@ -3,4 +3,9 @@
set -ex
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 @@
set -ex
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