From 3c3939b35b70ee22b17021db78da8a4dcd245cde Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Mon, 29 Jan 2024 14:15:06 +1300 Subject: [PATCH] FIX Correctly set needs_full_setup --- job_creator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/job_creator.php b/job_creator.php index b975adf..6cb0289 100644 --- a/job_creator.php +++ b/job_creator.php @@ -131,7 +131,8 @@ public function createJob(int $phpIndex, array $opts): array 'endtoend_suite' => 'root', 'endtoend_config' => '', 'js' => false, - 'needs_full_setup' => $this->installerVersion !== '' && !in_array($this->repoName, NO_INSTALLER_LOCKSTEPPED_REPOS), + // Needs full setup if installerVersion is set, OR this is one of the no-installer lockstepped repos + 'needs_full_setup' => $this->installerVersion !== '' || in_array($this->repoName, NO_INSTALLER_LOCKSTEPPED_REPOS), ]; return array_merge($default, $opts); }