Fix pcov on PHP 8.0 on Windows

This commit is contained in:
Shivam Mathur 2021-01-19 20:36:17 +05:30
parent fbc8407035
commit a83d4379b1
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -425,6 +425,10 @@ if($version -lt "5.5") {
} else { } else {
$enable_extensions += ('opcache') $enable_extensions += ('opcache')
} }
# Patch till there is a pcov DLL for PHP 8.0 on pecl
if ($version -eq '8.0') {
Invoke-WebRequest -Uri "https://github.com/shivammathur/php-extensions-windows/releases/latest/download/php$version`_$env:PHPTS`_$arch`_pcov.dll" -OutFile $php_dir"\ext\php`_pcov.dll"
}
Enable-PhpExtension -Extension $enable_extensions -Path $php_dir Enable-PhpExtension -Extension $enable_extensions -Path $php_dir
Update-PhpCAInfo -Path $php_dir -Source $cert_source Update-PhpCAInfo -Path $php_dir -Source $cert_source
Copy-Item -Path $dist\..\src\configs\*.json -Destination $env:RUNNER_TOOL_CACHE Copy-Item -Path $dist\..\src\configs\*.json -Destination $env:RUNNER_TOOL_CACHE