Skip to content

Commit

Permalink
Don't set KUBE_PARALLEL_BUILD_MEMORY any more
Browse files Browse the repository at this point in the history
1.20 is EOL since quite some time so I assume we can just remove that
part.

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
  • Loading branch information
saschagrunert committed Oct 14, 2024
1 parent 5742659 commit 68c2338
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pkg/build/make.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ func (m *Make) MakeCross(version string) error {
return fmt.Errorf("checking out version %s: %w", version, err)
}

// Unset the build memory requirement for parallel builds
// TODO: Remove this once the 1.20 release reaches EOL.
const buildMemoryKey = "KUBE_PARALLEL_BUILD_MEMORY"
logrus.Infof("Setting %s to force serial build", buildMemoryKey)
os.Setenv(buildMemoryKey, "32")

logrus.Info("Building binaries")
if err := m.impl.Command(
"make",
Expand Down

0 comments on commit 68c2338

Please sign in to comment.