Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Move from deprecated to supported Docker image #3948

Merged
merged 1 commit into from
Oct 19, 2023
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
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ references:
v1-dependency-js-deps-{{ checksum "package.json" }}
js_deps_backup_cache_key: &js_deps_backup_cache_key
v1-dependency-js-deps
node_latest: &node_latest
circleci/node:lts
node_image: &node_image
cimg/node:lts

restore_cache: &restore_cache
restore_cache:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
# command: ./tools/scripts/deploy.sh
"V8: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
Expand All @@ -78,7 +78,7 @@ jobs:
<<: [*execution_steps]
"V8 --harmony: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
hostType: d8
Expand All @@ -88,7 +88,7 @@ jobs:
<<: [*execution_steps]
"SpiderMonkey: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
hostType: jsshell
Expand All @@ -97,7 +97,7 @@ jobs:
<<: [*execution_steps]
"ChakraCore: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
hostType: ch
Expand All @@ -106,7 +106,7 @@ jobs:
<<: [*execution_steps]
"JSC: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
LANG: C
Expand All @@ -116,7 +116,7 @@ jobs:
<<: [*execution_steps]
"XS: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
hostType: xs
Expand All @@ -125,7 +125,7 @@ jobs:
<<: [*execution_steps]
"engine262: New or modified tests execution":
docker:
- image: *node_latest
- image: *node_image
working_directory: ~/test262
environment:
hostType: engine262
Expand Down