Revert "Run builds and tests quietly in CI" This reverts commit d9b906e8e18069104824469e4548bc7cdb0c7b59. Reason for revert: We decided we don't want this feature in case the build / test gets stuck Failure Link: N/A Original change's description: > Run builds and tests quietly in CI > > This prevents hundreds of lines of useless logs being created. > > Bug: None > Change-Id: I69807c3d9b76e732c7e7a7a86f898ab26a6a6964 > Reviewed-on: https://gn-review.googlesource.com/c/gn/+/23221 > Commit-Queue: Matt Stark <msta@google.com> > Reviewed-by: Takuto Ikuta <tikuta@google.com> TBR=tikuta@google.com,gn-scoped@luci-project-accounts.iam.gserviceaccount.com,msta@google.com No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: None Change-Id: I4ef747e7c91ba6b71b9a6613d473eee5b1b86ba0 Reviewed-on: https://gn-review.googlesource.com/c/gn/+/23240 Commit-Queue: Matt Stark <msta@google.com> Reviewed-by: Matt Stark <msta@google.com> Reviewed-by: Takuto Ikuta <tikuta@google.com>
diff --git a/infra/recipes/gn.py b/infra/recipes/gn.py index f0e7d94..93c9634 100644 --- a/infra/recipes/gn.py +++ b/infra/recipes/gn.py
@@ -264,11 +264,11 @@ # Windows requires the environment modifications when building too. api.step('build', - [cipd_dir.join('ninja'), '--quiet', '-C', + [cipd_dir.join('ninja'), '-C', src_dir.join('out')]) if target.is_host: - api.step('test', [src_dir.join('out', 'gn_unittests'), '--quiet']) + api.step('test', [src_dir.join('out', 'gn_unittests')]) if api.platform.is_linux: with api.context(env={'CLANG_FORMAT': cipd_dir.join('bin', 'clang-format')}):