Skip to content

Commit 6396ebd

Browse files
committed
CI: Move from deprecated to supported Docker image
The circleci/ images are deprecated and replaced by cimg/. Hopefully this will have a glibc that is new enough for XS's versioned symbols to link against. Rename 'node_latest' to 'node_image' since the image is the LTS, not the latest. The name would otherwise be confusing. Closes: #3891
1 parent 96bc38f commit 6396ebd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ references:
99
v1-dependency-js-deps-{{ checksum "package.json" }}
1010
js_deps_backup_cache_key: &js_deps_backup_cache_key
1111
v1-dependency-js-deps
12-
node_latest: &node_latest
13-
circleci/node:lts
12+
node_image: &node_image
13+
cimg/node:lts
1414

1515
restore_cache: &restore_cache
1616
restore_cache:
@@ -66,7 +66,7 @@ jobs:
6666
# command: ./tools/scripts/deploy.sh
6767
"V8: New or modified tests execution":
6868
docker:
69-
- image: *node_latest
69+
- image: *node_image
7070
# Specify service dependencies here if necessary
7171
# CircleCI maintains a library of pre-built images
7272
# documented at https://circleci.com/docs/2.0/circleci-images/
@@ -78,7 +78,7 @@ jobs:
7878
<<: [*execution_steps]
7979
"V8 --harmony: New or modified tests execution":
8080
docker:
81-
- image: *node_latest
81+
- image: *node_image
8282
working_directory: ~/test262
8383
environment:
8484
hostType: d8
@@ -88,7 +88,7 @@ jobs:
8888
<<: [*execution_steps]
8989
"SpiderMonkey: New or modified tests execution":
9090
docker:
91-
- image: *node_latest
91+
- image: *node_image
9292
working_directory: ~/test262
9393
environment:
9494
hostType: jsshell
@@ -97,7 +97,7 @@ jobs:
9797
<<: [*execution_steps]
9898
"ChakraCore: New or modified tests execution":
9999
docker:
100-
- image: *node_latest
100+
- image: *node_image
101101
working_directory: ~/test262
102102
environment:
103103
hostType: ch
@@ -106,7 +106,7 @@ jobs:
106106
<<: [*execution_steps]
107107
"JSC: New or modified tests execution":
108108
docker:
109-
- image: *node_latest
109+
- image: *node_image
110110
working_directory: ~/test262
111111
environment:
112112
LANG: C
@@ -116,7 +116,7 @@ jobs:
116116
<<: [*execution_steps]
117117
"XS: New or modified tests execution":
118118
docker:
119-
- image: *node_latest
119+
- image: *node_image
120120
working_directory: ~/test262
121121
environment:
122122
hostType: xs
@@ -125,7 +125,7 @@ jobs:
125125
<<: [*execution_steps]
126126
"engine262: New or modified tests execution":
127127
docker:
128-
- image: *node_latest
128+
- image: *node_image
129129
working_directory: ~/test262
130130
environment:
131131
hostType: engine262

0 commit comments

Comments
 (0)