Skip to content

Commit 5819807

Browse files
devversionAndrewKushnir
authored andcommitted
ci: increase parallelism for "test_docs_examples" jobs (angular#28984)
Currently the docs example tests (`test_docs_examples_ivy` and `test_docs_examples`) are the culprits for a slow-down in our overall CI turnaround. We need to increase parallelism in order to make our CI turnaround more _acceptable_. This is temporary and the long-term goal is to move these tests to Bazel with remote build execution. References angular#28940 PR Close angular#28984
1 parent 2e43e15 commit 5819807

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ jobs:
324324
docker:
325325
# Needed because the example e2e tests depend on Chrome.
326326
- image: *browsers_docker_image
327-
parallelism: 3
327+
parallelism: 4
328328
steps:
329329
- *attach_workspace
330330
- *init_environment
@@ -340,7 +340,10 @@ jobs:
340340
docker:
341341
# Needed because the example e2e tests depend on Chrome.
342342
- image: *browsers_docker_image
343-
parallelism: 3
343+
# We increase the parallelism here to five while the "test_docs_examples" job runs with
344+
# a parallelism of four. This is necessary because this job also need to run NGCC which
345+
# takes up more time and we don't want these jobs to impact the overall CI turnaround.
346+
parallelism: 5
344347
steps:
345348
- *attach_workspace
346349
- *init_environment

0 commit comments

Comments
 (0)