We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77373f0 commit 2ffcb9dCopy full SHA for 2ffcb9d
1 file changed
php/BuildPhp/private/Set-PhpIniForTests.ps1
@@ -23,6 +23,7 @@ function Set-PhpIniForTests {
23
$ini = "$BuildDirectory\phpbin\php.ini"
24
Copy-Item "$PSScriptRoot\..\config\ini\extensions.ini" $ini
25
Add-Content $ini "extension_dir=$BuildDirectory\phpbin\ext"
26
+ Add-Content $ini "memory_limit=-1"
27
if ($Opcache -eq "opcache") {
28
New-Item "$BuildDirectory/file_cache" -ItemType "directory" > $null 2>&1
29
$opcacheIni = Get-Content "$PSScriptRoot\..\config\ini\opcache-$Arch.ini" -Raw
@@ -33,4 +34,4 @@ function Set-PhpIniForTests {
33
34
}
35
end {
36
-}
37
+}
0 commit comments