Skip to content

Commit

Permalink
build: increase parallelism for "test_docs_examples" job (#27937)
Browse files Browse the repository at this point in the history
PR Close #27937
  • Loading branch information
devversion authored and AndrewKushnir committed Jan 16, 2019
1 parent eedb069 commit b51ae7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
docker:
# Needed because the example e2e tests depend on Chrome.
- image: *browsers_docker_image
parallelism: 2
parallelism: 3
steps:
- checkout:
<<: *post_checkout
Expand All @@ -237,8 +237,8 @@ jobs:
# Install aio
- run: yarn --cwd aio install --frozen-lockfile --non-interactive
# Run examples tests. The "CIRCLE_NODE_INDEX" will be set if "parallelism" is enabled.
# Since the parallelism is set to "2", there will be two parallel CircleCI containers
# with either "0" or "1" as node index. This can be passed to the "--shard" argument.
# Since the parallelism is set to "3", there will be three parallel CircleCI containers
# with either "0", "1" or "2" as node index. This can be passed to the "--shard" argument.
- run: yarn --cwd aio example-e2e --setup --local --shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL}

# This job should only be run on PR builds, where `CI_PULL_REQUEST` is not `false`.
Expand Down

0 comments on commit b51ae7e

Please sign in to comment.