diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-08-18 13:30:01 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-08-18 13:55:01 -0700 |
| commit | 48613af61c42e8a3b4925d7fc7b8ca8350e96f9b (patch) | |
| tree | a4c53eb27c55c5c360c8b60674b5c80700d0e5a4 /pkg | |
| parent | de20bcbb68a06e9589f4ad2bb162aa1feed0c5c9 (diff) | |
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).
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/vcs/fuchsia.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |
