Skip to content

Commit e149322

Browse files
authored
Merge pull request #6708 from greg0ire/pin-pcov-windows
Pin the version of PCOV for Windows
2 parents 36aa8b4 + 9963f91 commit e149322

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ install:
7878
$destination = "c:\tools\php\ext\php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
7979
Invoke-WebRequest $source -OutFile $destination
8080
7z x -y php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip > $null
81-
$DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/pcov/stable.txt").Content
81+
82+
# Pin the version until https://github.com/krakjoe/pcov/issues/117 is resolved
83+
$DLLVersion = "1.0.11"
8284
Invoke-WebRequest https://windows.php.net/downloads/pecl/releases/pcov/$($DLLVersion)/php_pcov-$($DLLVersion)-$($env:php)-nts-vc15-$($env:platform).zip -OutFile pcov.zip
8385
7z x -y pcov.zip > $null
8486
Remove-Item c:\tools\php\* -include .zip

0 commit comments

Comments
 (0)