Skip to content

Commit 053ade8

Browse files
committed
Remove chakra
While still a relatively active project, ChakraCore is no longer maintained by Microsoft. It's not supported by esvu anymore and it was already disabled on CI.
1 parent f5bf9fd commit 053ade8

File tree

3 files changed

+3
-17
lines changed

3 files changed

+3
-17
lines changed

.circleci/config.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ jobs:
6868
hostPath: spidermonkey
6969
hostName: spidermonkey
7070
<<: [*execution_steps]
71-
# "ChakraCore: New or modified tests execution":
72-
# docker:
73-
# - image: *node_image
74-
# working_directory: ~/test262
75-
# environment:
76-
# hostType: ch
77-
# hostPath: chakra
78-
# hostName: chakra
79-
# <<: [*execution_steps]
8071
"JSC: New or modified tests execution":
8172
docker:
8273
- image: *node_image
@@ -110,7 +101,6 @@ workflows:
110101
version: 2
111102
Tests execution:
112103
jobs:
113-
# - "ChakraCore: New or modified tests execution"
114104
- "JSC: New or modified tests execution"
115105
- "SpiderMonkey: New or modified tests execution"
116106
- "V8: New or modified tests execution"

CONTRIBUTING.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ function Test262Error(message) {
299299

300300
The [Module section of INTERPRETING.md](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#modules) states that `_FIXTURE` files will not have Realm modifications applied. In practice, this means that code in `_FIXTURE` files must abide by the following rules:
301301

302-
- **MUST NOT** refer to, or make use of any [Test262-Defined Bindings](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#test262-defined-bindings) in any way.
303-
- **MUST NOT** refer to, or make use of any [Host-Defined Functions](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#host-defined-functions) in any way.
302+
- **MUST NOT** refer to, or make use of any [Test262-Defined Bindings](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#test262-defined-bindings) in any way.
303+
- **MUST NOT** refer to, or make use of any [Host-Defined Functions](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#host-defined-functions) in any way.
304304

305305
## Handling Errors and Negative Test Cases
306306

@@ -458,7 +458,6 @@ Tests expressed with this convention are built automatically following the sourc
458458

459459
## Reporting Bugs to Implementers
460460

461-
- [ChakraCore](https://github.com/microsoft/ChakraCore/issues/new)
462461
- [engine262](https://github.com/engine262/engine262/issues/new)
463462
- [GraalJS](https://github.com/oracle/graal/issues/new?labels=bug&template=5_issues_other.md&title=)
464463
- [Hermes](https://github.com/facebook/hermes/issues/new?labels%5B%5D=need+triage&labels%5B%5D=bug&template=01_bug_report.md&title=)
@@ -467,5 +466,3 @@ Tests expressed with this convention are built automatically following the sourc
467466
- [QuickJS](https://github.com/bellard/quickjs/issues/new)
468467
- [SpiderMonkey](https://bugzilla.mozilla.org/enter_bug.cgi?product=Core&component=JavaScript%20Engine)
469468
- [V8](https://bugs.chromium.org/p/v8/issues/entry)
470-
471-

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
"ci": "./tools/scripts/ci_test.sh",
2121
"test": "test262-harness",
2222
"diff": "git diff --diff-filter ACMR --name-only main.. -- test/ && git ls-files --exclude-standard --others -- test/",
23-
"test:diff": "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:chakra && npm run test:diff:javascriptcore",
23+
"test:diff": "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:javascriptcore",
2424
"test:diff:v8": "test262-harness -t 8 --hostType=d8 --hostPath=v8 $(npm run --silent diff)",
2525
"test:diff:spidermonkey": "test262-harness -t 8 --hostType=jsshell --hostPath=spidermonkey $(npm run --silent diff)",
26-
"test:diff:chakra": "test262-harness -t 8 --hostType=ch --hostPath=chakra $(npm run --silent diff)",
2726
"test:diff:javascriptcore": "test262-harness -t 8 --hostType=jsc --hostPath=javascriptcore $(npm run --silent diff)",
2827
"test:diff:xs": "test262-harness -t 8 --hostType=xs --hostPath=xs $(npm run --silent diff)"
2928
}

0 commit comments

Comments
 (0)