@@ -332,6 +332,7 @@ jobs:
332
332
# Needed because the example e2e tests depend on Chrome.
333
333
- image : *browsers_docker_image
334
334
parallelism : 4
335
+ resource_class : xlarge
335
336
steps :
336
337
- *attach_workspace
337
338
- *init_environment
@@ -340,13 +341,14 @@ jobs:
340
341
# Run examples tests. The "CIRCLE_NODE_INDEX" will be set if "parallelism" is enabled.
341
342
# Since the parallelism is set to "3", there will be three parallel CircleCI containers
342
343
# with either "0", "1" or "2" as node index. This can be passed to the "--shard" argument.
343
- - run : yarn --cwd aio example-e2e --setup --local --shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL}
344
+ - run : yarn --cwd aio example-e2e --setup --local --cliSpecsConcurrency=5 -- shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL}
344
345
345
346
test_docs_examples_ivy :
346
347
<< : *job_defaults
347
348
docker :
348
349
# Needed because the example e2e tests depend on Chrome.
349
350
- image : *browsers_docker_image
351
+ resource_class : xlarge
350
352
# We increase the parallelism here to five while the "test_docs_examples" job runs with
351
353
# a parallelism of four. This is necessary because this job also need to run NGCC which
352
354
# takes up more time and we don't want these jobs to impact the overall CI turnaround.
@@ -365,7 +367,7 @@ jobs:
365
367
# Run examples tests with ivy. The "CIRCLE_NODE_INDEX" will be set if "parallelism" is enabled.
366
368
# Since the parallelism is set to "3", there will be three parallel CircleCI containers
367
369
# with either "0", "1" or "2" as node index. This can be passed to the "--shard" argument.
368
- - run : yarn --cwd aio example-e2e --setup --local --ivy --shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL}
370
+ - run : yarn --cwd aio example-e2e --setup --local --ivy --cliSpecsConcurrency=5 -- shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL}
369
371
370
372
# This job should only be run on PR builds, where `CI_PULL_REQUEST` is not `false`.
371
373
aio_preview :
0 commit comments