1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

[skip ci] Skip segfaulting OOM test in GH actions on Win

This only fails on the PHP-8.3 branch, most likely to be related to the
environment as discussed with Niels.
This commit is contained in:
Ilija Tovilo
2025-08-06 14:27:36 +02:00
parent bf6a74d2f9
commit 5be04e25fd

View File

@@ -7,6 +7,9 @@ memory_limit=2M
if (getenv("USE_ZEND_ALLOC") === "0") {
die("skip Zend MM disabled");
}
if (getenv("GITHUB_ACTIONS") && substr(PHP_OS, 0, 3) == "WIN") {
die("skip Segfaults in GitHub actions on Windows");
}
?>
--FILE--
<?php