8000 [ci] Disable JS tests again · WebAssembly/spec@485bbd9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 485bbd9

Browse files
committed
[ci] Disable JS tests again
1 parent 2f844b0 commit 485bbd9

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci-interpreter.yml

Expand all lines: .github/workflows/ci-interpreter.yml
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ jobs:
2424
ocaml-compiler: 4.14.x
2525
- name: Setup OCaml tools
2626
run: opam install --yes ocamlfind.1.9.5 js_of_ocaml.4.0.0 js_of_ocaml-ppx.4.0.0
27+
- name: Build interpreter
28+
run: cd interpreter && opam exec make
29+
# Neither V8 nor SpiderMonkey can currently handle all 3.0 tests, so we disable checking JS translation for now.
2730
#- name: Setup Node.js
2831
# uses: actions/setup-node@v4
2932
# with:
3033
# node-version: 25-nightly
31-
- name: Setup SpiderMonkey
32-
run: curl -O https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-linux-x86_64.zip && unzip jsshell-linux-x86_64.zip
33-
- name: Build interpreter
34-
run: cd interpreter && opam exec make
34+
#- name: Setup SpiderMonkey
35+
# run: curl -O https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-linux-x86_64.zip && unzip jsshell-linux-x86_64.zip
3536
- name: Run tests
36-
run: cd interpreter && opam exec make JS=../js ci
37-
#run: cd interpreter && opam exec make JS=node ci
37+
run: cd interpreter && opam exec make ci # don't test JS translation
38+
# run: cd interpreter && opam exec make JS=node ci # test with V8
39+
# run: cd interpreter && opam exec make JS=../js ci # test with SM

0 commit comments

Comments
 (0)
0