From 1d1f58f3a1e47d226f76cf7c83d9d4879dab0fd9 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Fri, 8 May 2026 20:55:23 +0800 Subject: [PATCH] Disable parallel downloading --- src/StaticPHP/Command/Dev/GenExtTestMatrixCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StaticPHP/Command/Dev/GenExtTestMatrixCommand.php b/src/StaticPHP/Command/Dev/GenExtTestMatrixCommand.php index 0f938ef7..3741b2aa 100644 --- a/src/StaticPHP/Command/Dev/GenExtTestMatrixCommand.php +++ b/src/StaticPHP/Command/Dev/GenExtTestMatrixCommand.php @@ -11,7 +11,7 @@ use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand('dev:gen-ext-test-matrix', 'Generate GitHub Actions extension test matrix JSON', [], true)] class GenExtTestMatrixCommand extends BaseCommand { - private const string BUILD_TARGETS = '--build-cli --build-cgi --build-micro --dl-parallel=10'; + private const string BUILD_TARGETS = '--build-cli --build-cgi --build-micro'; private const array OS_RUNNERS = [ 'linux' => ['arch' => 'x86_64', 'runner' => 'ubuntu-latest', 'os_key' => 'Linux'],