From 814ee260f5154bc0c1add9473a5c3d9da6e652b6 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Sat, 2 Feb 2019 00:13:51 +0200 Subject: [PATCH] ci(docs-infra): reduce output verbosity to improve log readability (#28494) PR Close #28494 --- .circleci/config.yml | 8 ++++---- aio/angular.json | 8 ++++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 89a56e6e62..7302dd1b7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -157,9 +157,9 @@ jobs: # (Run before unit and e2e tests, which destroy the `dist/` directory.) - run: yarn --cwd aio payload-size # Run unit tests - - run: yarn --cwd aio test --watch=false + - run: yarn --cwd aio test --progress=false --watch=false # Run e2e tests - - run: yarn --cwd aio e2e + - run: yarn --cwd aio e2e --configuration=ci # Run unit tests for Firebase redirects - run: yarn --cwd aio redirects-test @@ -197,9 +197,9 @@ jobs: # (Run before unit and e2e tests, which destroy the `dist/` directory.) - run: yarn --cwd aio test-pwa-score-localhost $CI_AIO_MIN_PWA_SCORE # Run unit tests - - run: yarn --cwd aio test --watch=false + - run: yarn --cwd aio test --progress=false --watch=false # Run e2e tests - - run: yarn --cwd aio e2e + - run: yarn --cwd aio e2e --configuration=ci test_aio_local_ivy: <<: *job_defaults diff --git a/aio/angular.json b/aio/angular.json index 27222da290..6355a4b314 100644 --- a/aio/angular.json +++ b/aio/angular.json @@ -104,6 +104,9 @@ }, "archive": { "browserTarget": "site:build:archive" + }, + "ci": { + "progress": false } } }, @@ -166,6 +169,11 @@ "options": { "protractorConfig": "tests/e2e/protractor.conf.js", "devServerTarget": "site:serve" + }, + "configurations": { + "ci": { + "devServerTarget": "site:serve:ci" + } } }, "lint": {