jobsite/builder: no caching for osbuild.

As builders are not re-used caching has no use and can likely only
lead to disk-size issues. This can be re-enabled when we have an
outside-of-the-builder cache.
This commit is contained in:
Simon de Vlieger 2024-02-09 10:58:51 +01:00 committed by Sanne Raymaekers
parent b9b476c430
commit 42892754fd

View file

@ -240,8 +240,7 @@ func (builder *Builder) HandleBuild(w http.ResponseWriter, r *http.Request) erro
args := []string{
"--store", path.Join(argBuildPath, "store"),
"--cache-max-size", "unlimited",
"--checkpoint", "*",
"--cache-max-size", "0",
"--output-directory", path.Join(argBuildPath, "export"),
}