mirror of https://github.com/tc39/test262.git
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
This commit is contained in:
parent
96bc38f5d9
commit
6396ebde03
|
@ -9,8 +9,8 @@ references:
|
||||||
v1-dependency-js-deps-{{ checksum "package.json" }}
|
v1-dependency-js-deps-{{ checksum "package.json" }}
|
||||||
js_deps_backup_cache_key: &js_deps_backup_cache_key
|
js_deps_backup_cache_key: &js_deps_backup_cache_key
|
||||||
v1-dependency-js-deps
|
v1-dependency-js-deps
|
||||||
node_latest: &node_latest
|
node_image: &node_image
|
||||||
circleci/node:lts
|
cimg/node:lts
|
||||||
|
|
||||||
restore_cache: &restore_cache
|
restore_cache: &restore_cache
|
||||||
restore_cache:
|
restore_cache:
|
||||||
|
@ -66,7 +66,7 @@ jobs:
|
||||||
# command: ./tools/scripts/deploy.sh
|
# command: ./tools/scripts/deploy.sh
|
||||||
"V8: New or modified tests execution":
|
"V8: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
# Specify service dependencies here if necessary
|
# Specify service dependencies here if necessary
|
||||||
# CircleCI maintains a library of pre-built images
|
# CircleCI maintains a library of pre-built images
|
||||||
# documented at https://circleci.com/docs/2.0/circleci-images/
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"V8 --harmony: New or modified tests execution":
|
"V8 --harmony: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
hostType: d8
|
hostType: d8
|
||||||
|
@ -88,7 +88,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"SpiderMonkey: New or modified tests execution":
|
"SpiderMonkey: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
hostType: jsshell
|
hostType: jsshell
|
||||||
|
@ -97,7 +97,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"ChakraCore: New or modified tests execution":
|
"ChakraCore: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
hostType: ch
|
hostType: ch
|
||||||
|
@ -106,7 +106,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"JSC: New or modified tests execution":
|
"JSC: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
LANG: C
|
LANG: C
|
||||||
|
@ -116,7 +116,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"XS: New or modified tests execution":
|
"XS: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
hostType: xs
|
hostType: xs
|
||||||
|
@ -125,7 +125,7 @@ jobs:
|
||||||
<<: [*execution_steps]
|
<<: [*execution_steps]
|
||||||
"engine262: New or modified tests execution":
|
"engine262: New or modified tests execution":
|
||||||
docker:
|
docker:
|
||||||
- image: *node_latest
|
- image: *node_image
|
||||||
working_directory: ~/test262
|
working_directory: ~/test262
|
||||||
environment:
|
environment:
|
||||||
hostType: engine262
|
hostType: engine262
|
||||||
|
|
Loading…
Reference in New Issue