From 5be04e25fd6dd55cf6f4adcf45bc1daa95f5c7aa Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Wed, 6 Aug 2025 14:27:36 +0200 Subject: [PATCH] [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. --- ext/spl/tests/gh14639.phpt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/spl/tests/gh14639.phpt b/ext/spl/tests/gh14639.phpt index 1b6f621d27b..db85b2b044e 100644 --- a/ext/spl/tests/gh14639.phpt +++ b/ext/spl/tests/gh14639.phpt @@ -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--