From 48613af61c42e8a3b4925d7fc7b8ca8350e96f9b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 18 Aug 2018 13:30:01 -0700 Subject: pkg/vcs: use garnet instead of topaz layer for fuchsia Topaz contains end user applications that are not interesting for us and only increase build time. The applications also consume lots of memory, so switching to garnet should leave more memory for the fuzzer (maybe eliminate some OOMs). --- pkg/vcs/fuchsia.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/vcs') diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go index 48f5a6687..a6a7237f6 100644 --- a/pkg/vcs/fuchsia.go +++ b/pkg/vcs/fuchsia.go @@ -52,7 +52,7 @@ func (ctx *fuchsia) initRepo() error { return err } cmd := "curl -s 'https://fuchsia.googlesource.com/scripts/+/master/bootstrap?format=TEXT' |" + - "base64 --decode | bash -s topaz" + "base64 --decode | bash -s garnet" if _, err := runSandboxed(tmpDir, "bash", "-c", cmd); err != nil { return err } -- cgit mrf-deployment