From 2954a14c3deba32c5754133e44a62bc606e3c1f0 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Fri, 17 Jan 2020 19:06:53 +0200 Subject: [PATCH] ci(docs-infra): do not output build progress for e2e tests on CI (#34840) When running the e2e tests on CI, it is desirable that the build progress is not logged, because that clutters the logs and makes it difficult to get to the useful info in case of failures. The previous config to achieve that doesn't work any more. This commit update the `ci` configuration for e2e tests to suppress build progress logging. PR Close #34840 --- aio/angular.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aio/angular.json b/aio/angular.json index 95d0f79c76..28e22467a8 100644 --- a/aio/angular.json +++ b/aio/angular.json @@ -97,6 +97,9 @@ } ], "serviceWorker": true + }, + "ci": { + "progress": false } } }, @@ -119,7 +122,7 @@ "browserTarget": "site:build:archive" }, "ci": { - "progress": false + "browserTarget": "site:build:ci" } } },