From 7cd89b489bee453d86615d47ca6a71a06e5113db Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Mon, 4 Nov 2024 16:16:38 +0100 Subject: dashboard/app: generate fewer logs exporting reproducers 1. Don't pring per-file log by tool. 2. Disable tar verbosity. 3. Make gsutil quiet. --- dashboard/app/batch_reproexport.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dashboard') diff --git a/dashboard/app/batch_reproexport.go b/dashboard/app/batch_reproexport.go index a9f10e32c..1fa8ec224 100644 --- a/dashboard/app/batch_reproexport.go +++ b/dashboard/app/batch_reproexport.go @@ -36,7 +36,7 @@ func exportReproScript(srcNamespace, archivePath string) string { "token=$(gcloud auth print-access-token)\n" + "CI=1 ./tools/syz-env \"" + // CI=1 to suppress "The input device is not a TTY". "go run ./tools/syz-reprolist/... -namespace " + srcNamespace + " -token $token -j 10 && " + - "tar -czvf reproducers.tar.gz ./repros/ && " + - "gsutil -m cp reproducers.tar.gz " + archivePath + + "tar -czf reproducers.tar.gz ./repros/ && " + + "gsutil -q -m cp reproducers.tar.gz " + archivePath + "\"" } -- cgit mrf-deployment