Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f04fe9ab authored by Colin Cross's avatar Colin Cross
Browse files

multiproduct_kati: increase ram per job to 25GB

multiproduct_kati sometimes passes 20GB per soong_build process,
increase required ram per job to 25GB.

Bug: 178376498
Test: none
Change-Id: I446f52ea7419bc3015d940511af1f03b15eb651e
parent 398ba4fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ func main() {
		jobs = runtime.NumCPU() / 4

		ramGb := int(config.TotalRAM() / 1024 / 1024 / 1024)
		if ramJobs := ramGb / 20; ramGb > 0 && jobs > ramJobs {
		if ramJobs := ramGb / 25; ramGb > 0 && jobs > ramJobs {
			jobs = ramJobs
		}