We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2882b commit ff1712fCopy full SHA for ff1712f
pkg/build/starnix.go
@@ -59,6 +59,15 @@ func (st starnix) build(params Params) (ImageDetails, error) {
59
if err := osutil.SandboxChown(localDir); err != nil {
60
return ImageDetails{}, err
61
}
62
+
63
+ if _, err := runSandboxed(
64
+ 30*time.Second,
65
+ params.KernelDir,
66
+ "scripts/fx", "build-profile", "disable",
67
+ ); err != nil {
68
+ return ImageDetails{}, err
69
+ }
70
71
buildSubdir := "out/" + arch
72
if _, err := runSandboxed(
73
time.Hour,
0 commit comments