From ce8a9099a5364313c309ba882f76c9ab4d74afb1 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 22 Aug 2024 15:41:11 +0200 Subject: all: rename build_jobs to build_cpus The latter is a better suitable name. --- pkg/bisect/bisect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/bisect') diff --git a/pkg/bisect/bisect.go b/pkg/bisect/bisect.go index 1fd08d1ca..3f6c1ca07 100644 --- a/pkg/bisect/bisect.go +++ b/pkg/bisect/bisect.go @@ -37,7 +37,7 @@ type Config struct { Manager *mgrconfig.Config BuildSemaphore *instance.Semaphore TestSemaphore *instance.Semaphore - BuildJobs int + BuildCPUs int // CrossTree specifies whether a cross tree bisection is to take place, i.e. // Kernel.Commit is not reachable from Kernel.Branch. // In this case, bisection starts from their merge base. @@ -626,7 +626,7 @@ func (env *env) build() (*vcs.Commit, string, error) { CmdlineFile: kern.Cmdline, SysctlFile: kern.Sysctl, KernelConfig: bisectEnv.KernelConfig, - BuildJobs: env.cfg.BuildJobs, + BuildCPUs: env.cfg.BuildCPUs, }) if imageDetails.CompilerID != "" { env.log("compiler: %v", imageDetails.CompilerID) -- cgit mrf-deployment