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.
2 parents 9fe95e7 + fb3b163 commit 807d22fCopy full SHA for 807d22f
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