Disable parallel downloading

This commit is contained in:
crazywhalecc
2026-05-08 20:55:23 +08:00
parent be039802c0
commit 1d1f58f3a1

View File

@@ -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'],