Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# See https://circleci.com/docs/2.0/caching/#restoring-cache for how prefixes work in CircleCI.
var_1: &default_docker_image circleci/node:10.12
var_2: &browsers_docker_image circleci/node:10.12-browsers
var_2: &browsers_docker_image_node_12 circleci/node:12.1-browsers
var_3: &cache_key angular_devkit-0.10.0-{{ checksum "yarn.lock" }}

# Settings common to each job
Expand Down Expand Up @@ -115,6 +116,19 @@ jobs:
path: /tmp/dist
destination: cli/new-production

e2e-cli-node-12:
<<: *defaults
docker:
- image: *browsers_docker_image_node_12
environment:
BASH_ENV: ~/.profile
NPM_CONFIG_PREFIX: ~/.npm-global
resource_class: xlarge
parallelism: 4
steps:
- attach_workspace: *attach_options
- run: PATH=~/.npm-global/bin:$PATH xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}

e2e-cli-ivy:
<<: *defaults
docker:
Expand Down Expand Up @@ -218,6 +232,9 @@ workflows:
- e2e-cli:
requires:
- build
- e2e-cli-node-12:
requires:
- build
- e2e-cli-ivy:
requires:
- build
Expand Down