File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,16 @@ jobs:
24
24
ocaml-compiler : 4.14.x
25
25
- name : Setup OCaml tools
26
26
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.
27
30
# - name: Setup Node.js
28
31
# uses: actions/setup-node@v4
29
32
# with:
30
33
# 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
35
36
- 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
You can’t perform that action at this time.
0 commit comments