test262/.circleci/config.yml

120 lines
3.1 KiB
YAML
Raw Normal View History

# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
references:
js_deps_cache_key: &js_deps_cache_key
v1-dependency-js-deps-{{ checksum "package.json" }}
js_deps_backup_cache_key: &js_deps_backup_cache_key
v1-dependency-js-deps
node_image: &node_image
cimg/node:lts
restore_cache: &restore_cache
restore_cache:
keys:
- *js_deps_cache_key
- *js_deps_backup_cache_key
save_cache: &save_cache
save_cache:
paths:
- node_modules
key: *js_deps_cache_key
2019-03-25 17:02:26 +01:00
execution_steps: &execution_steps
steps:
- checkout
- *restore_cache
- run: npm install
- *save_cache
2019-09-24 19:48:08 +02:00
- run:
name: fetch engines from esvu
2019-09-24 19:48:08 +02:00
command: |
./node_modules/.bin/esvu install $hostName
- run: hostPath=$HOME/.esvu/bin/$hostPath npm run ci
jobs:
"V8: New or modified tests execution":
docker:
- 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/
working_directory: ~/test262
environment:
hostType: d8
hostPath: v8
hostName: v8
2019-03-25 17:02:26 +01:00
<<: [*execution_steps]
"V8 --harmony: New or modified tests execution":
docker:
- image: *node_image
working_directory: ~/test262
environment:
hostType: d8
hostPath: v8
hostName: v8
hostArgs: --harmony
2019-03-25 17:02:26 +01:00
<<: [*execution_steps]
"SpiderMonkey: New or modified tests execution":
docker:
- image: *node_image
working_directory: ~/test262
environment:
hostType: jsshell
hostPath: spidermonkey
hostName: spidermonkey
2019-03-25 17:02:26 +01:00
<<: [*execution_steps]
# "ChakraCore: New or modified tests execution":
# docker:
# - image: *node_image
# working_directory: ~/test262
# environment:
# hostType: ch
# hostPath: chakra
# hostName: chakra
# <<: [*execution_steps]
"JSC: New or modified tests execution":
docker:
- image: *node_image
working_directory: ~/test262
environment:
2019-09-24 19:48:08 +02:00
LANG: C
hostType: jsc
hostPath: javascriptcore
hostName: javascriptcore
2019-03-25 17:02:26 +01:00
<<: [*execution_steps]
"XS: New or modified tests execution":
docker:
- image: *node_image
working_directory: ~/test262
environment:
2019-03-25 17:02:26 +01:00
hostType: xs
hostPath: xs
2019-03-25 17:02:26 +01:00
hostName: xs
<<: [*execution_steps]
2019-11-29 22:49:44 +01:00
"engine262: New or modified tests execution":
docker:
- image: *node_image
2019-11-29 22:49:44 +01:00
working_directory: ~/test262
environment:
hostType: engine262
hostPath: engine262
2019-11-29 22:49:44 +01:00
hostName: engine262
hostArgs: --features=all
<<: [*execution_steps]
workflows:
version: 2
Tests execution:
jobs:
# - "ChakraCore: New or modified tests execution"
- "JSC: New or modified tests execution"
- "SpiderMonkey: New or modified tests execution"
- "V8: New or modified tests execution"
- "V8 --harmony: New or modified tests execution"
2019-03-25 17:02:26 +01:00
- "XS: New or modified tests execution"
2019-11-29 22:49:44 +01:00
- "engine262: New or modified tests execution"