diff --git a/.appveyor.yml b/.appveyor.yml index 3d95b8eb25..dbebb318a6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -78,7 +78,9 @@ install: $destination = "c:\tools\php\ext\php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip" Invoke-WebRequest $source -OutFile $destination 7z x -y php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip > $null - $DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/pcov/stable.txt").Content + + # Pin the version until https://github.com/krakjoe/pcov/issues/117 is resolved + $DLLVersion = "1.0.11" Invoke-WebRequest https://windows.php.net/downloads/pecl/releases/pcov/$($DLLVersion)/php_pcov-$($DLLVersion)-$($env:php)-nts-vc15-$($env:platform).zip -OutFile pcov.zip 7z x -y pcov.zip > $null Remove-Item c:\tools\php\* -include .zip