From cc366d9050ca90346936b8d60766dc49826182a0 Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Mon, 10 Nov 2025 17:32:40 +0400 Subject: [PATCH] fix: Use environment variable for RoadRunner binary path --- testing/src/SystemInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/src/SystemInfo.php b/testing/src/SystemInfo.php index 53a99cc4..353c85a6 100644 --- a/testing/src/SystemInfo.php +++ b/testing/src/SystemInfo.php @@ -67,7 +67,7 @@ public static function detect(): self self::PLATFORM_MAPPINGS[$os], self::ARCHITECTURE_MAPPINGS[Architecture::createFromGlobals()], self::TEMPORAL_EXECUTABLE_MAP[$os], - self::RR_EXECUTABLE_MAP[$os], + \getenv('ROADRUNNER_BINARY') ?: self::RR_EXECUTABLE_MAP[$os], self::TEMPORAL_CLI_EXECUTABLE_MAP[$os], ); }