We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cca6d9 commit fb3b163Copy full SHA for fb3b163
test/e2e_node/builder/build.go
@@ -77,6 +77,8 @@ func BuildTargets(cgo bool) error {
77
klog.Infof("Building dockerized k8s binaries targets %s for architecture %s", targets, GetTargetBuildArch())
78
// Multi-architecture build is only supported in dockerized build
79
cmd = exec.Command(filepath.Join(k8sRoot, "build/run.sh"), "make", fmt.Sprintf("WHAT=%s", what), fmt.Sprintf("KUBE_BUILD_PLATFORMS=%s", GetTargetBuildArch()))
80
+ // Ensure we run this command in k8s root directory for dockerized build
81
+ cmd.Dir = k8sRoot
82
}
83
cmd.Stdout = os.Stdout
84
cmd.Stderr = os.Stderr
0 commit comments