File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,9 @@ jobs:
101
101
if : runner.os == 'Windows'
102
102
run : opam pin add -n dune https://github.com/hhugo/dune.git#shorter-path-jsoo
103
103
104
+ - name : Install dune
105
+ run : opam install dune
106
+
104
107
- name : Pin wasm_of_ocaml
105
108
working-directory : ./wasm_of_ocaml
106
109
run : opam pin . -n --with-version dev
@@ -109,7 +112,7 @@ jobs:
109
112
if : matrix.jane_street_tests
110
113
run : |
111
114
opam repo add js janestreet/opam-repository
112
- opam install opam-format ocamlfind dune graphics cmdliner
115
+ opam install opam-format
113
116
opam exec -- dune exec --root wasm_of_ocaml tools/ci_setup.exe
114
117
115
118
- name : Pin Jane Street packages
@@ -123,8 +126,7 @@ jobs:
123
126
- name : Install wasm_of_ocaml and its test dependencies
124
127
working-directory : ./wasm_of_ocaml
125
128
run : |
126
- opam install .
127
- opam install num ppx_expect cstruct uucp
129
+ opam install . -t
128
130
129
131
- name : Run tests
130
132
if : ${{ matrix.separate_compilation }}
Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ let repo = Filename.concat jane_root "opam-repository/packages"
11
11
12
12
let roots = [ " bonsai_web_components" ; " string_dict" ; " ppx_html" ]
13
13
14
- let omitted_others =
15
- StringSet. of_list
16
- [ " cohttp-async" ; " cohttp" ; " uri" ; " uri-sexp" ; " cstruct" ; " uucp" ; " odoc-parser" ]
14
+ let omitted_others = StringSet. of_list []
17
15
18
16
let omitted_js = StringSet. of_list [ " sexplib0" ]
19
17
You can’t perform that action at this time.
0 commit comments