Skip to content

Commit

Permalink
Merge pull request kubernetes#120915 from dims/fix-missed-branch-targ…
Browse files Browse the repository at this point in the history
…ets-when-building-using-arm64

fix missed branch - targets when building using arm64
  • Loading branch information
k8s-ci-robot authored Sep 27, 2023
2 parents 1020678 + d900217 commit 6879557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e_node/builder/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func BuildTargets(cgo bool) error {
if IsDockerizedBuild() {
klog.Infof("Building dockerized k8s binaries targets %s for architecture %s", targets, GetTargetBuildArch())
// Multi-architecture build is only supported in dockerized build
cmd = exec.Command(filepath.Join(k8sRoot, "build/run.sh"), "make", fmt.Sprintf("WHAT=%s", targets), fmt.Sprintf("KUBE_BUILD_PLATFORMS=%s", GetTargetBuildArch()))
cmd = exec.Command(filepath.Join(k8sRoot, "build/run.sh"), "make", fmt.Sprintf("WHAT=%s", what), fmt.Sprintf("KUBE_BUILD_PLATFORMS=%s", GetTargetBuildArch()))
}
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 6879557

Please sign in to comment.