Skip to content

Commit 05d0b78

Browse files
committed
Use latest stable versions of Xdebug and sqlsrv on CI
1 parent 77ecc63 commit 05d0b78

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ install:
7979
$destination = "c:\tools\php\ext\php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
8080
Invoke-WebRequest $source -OutFile $destination
8181
7z x -y php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip > $null
82-
$DLLVersion = "2.6.0"
82+
$DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/xdebug/stable.txt").Content
8383
$source = "https://xdebug.org/files/php_xdebug-$($DLLVersion)-$($env:php)-vc15-nts-x86_64.dll"
8484
$destination = "c:\tools\php\ext\php_xdebug.dll"
8585
Invoke-WebRequest $source -OutFile $destination

tests/travis/install-mssql-pdo_sqlsrv.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@ set -ex
44

55
echo "Installing extension"
66

7-
if [ "$TRAVIS_PHP_VERSION" == "7.3" ] || [ "$TRAVIS_PHP_VERSION" == "nightly" ] ; then
8-
pecl install pdo_sqlsrv-5.4.0preview
9-
else
10-
pecl install pdo_sqlsrv
11-
fi
7+
pecl install pdo_sqlsrv

tests/travis/install-mssql-sqlsrv.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@ set -ex
44

55
echo "Installing extension"
66

7-
if [ "$TRAVIS_PHP_VERSION" == "7.3" ] || [ "$TRAVIS_PHP_VERSION" == "nightly" ] ; then
8-
pecl install sqlsrv-5.4.0preview
9-
else
10-
pecl install sqlsrv
11-
fi
7+
pecl install sqlsrv

0 commit comments

Comments
 (0)