File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 15
15
# See https://circleci.com/docs/2.0/caching/#restoring-cache for how prefixes work in CircleCI.
16
16
var_1 : &default_docker_image circleci/node:10.12
17
17
var_2 : &browsers_docker_image circleci/node:10.12-browsers
18
+ var_2 : &browsers_docker_image_node_12 circleci/node:12-browsers
18
19
var_3 : &cache_key angular_devkit-0.10.0-{{ checksum "yarn.lock" }}
19
20
20
21
# Settings common to each job
@@ -115,6 +116,22 @@ jobs:
115
116
path : /tmp/dist
116
117
destination : cli/new-production
117
118
119
+ e2e-cli-node-12 :
120
+ << : *defaults
121
+ docker :
122
+ - image : *browsers_docker_image_node_12
123
+ environment :
124
+ BASH_ENV : ~/.profile
125
+ NPM_CONFIG_PREFIX : ~/.npm-global
126
+ resource_class : xlarge
127
+ parallelism : 4
128
+ steps :
129
+ - attach_workspace : *attach_options
130
+ - run : PATH=~/.npm-global/bin:$PATH xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}
131
+ - store_artifacts :
132
+ path : /tmp/dist
133
+ destination : cli/new-production
134
+
118
135
e2e-cli-ivy :
119
136
<< : *defaults
120
137
docker :
@@ -218,6 +235,9 @@ workflows:
218
235
- e2e-cli :
219
236
requires :
220
237
- build
238
+ - e2e-cli-node-12 :
239
+ requires :
240
+ - build
221
241
- e2e-cli-ivy :
222
242
requires :
223
243
- build
You can’t perform that action at this time.
0 commit comments