File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 69
69
70
70
- name : 🐛 Special Windows Config [only on Win CI]
71
71
if : matrix.os == 'windows-latest'
72
- run : opam exec -- make winconfig
72
+ run : |
73
+ # Waiting on ocamlfind 1.9.8
74
+ # c.f. https://github.com/ocaml/opam-repository/pull/27253
75
+ opam pin add --dev ocamlfind
76
+ opam exec -- make winconfig
73
77
74
78
- name : 🧱 Build coq-lsp
75
79
run : opam exec -- make build
Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ make-fmt: build fmt
147
147
.PHONY : opam-update-and-reinstall
148
148
opam-update-and-reinstall :
149
149
git pull --recurse-submodules
150
- for pkg in rocq-runtime coq-core rocq-core stdlib/coq-stdlib coqide-server coq; do opam install -y vendor/coq/$$ pkg.opam; done
150
+ for pkg in rocq-runtime coq-core rocq-core coqide-server rocq coq; do opam install -y vendor/coq/$$ pkg.opam; done
151
+ for pkg in rocq-stdlib coq-stdlib; do opam install -y vendor/coq-stdlib/$$ pkg.opam; done
151
152
opam install .
152
153
153
154
.PHONY : patch-for-js
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ let make ~cmdline ~implicit ~kind ~debug =
172
172
in
173
173
let require_libs =
174
174
let rq_list =
175
- if init then ((None , " Stdlib .Init.Prelude" ) :: require_libraries) @ libs
175
+ if init then ((None , " Corelib .Init.Prelude" ) :: require_libraries) @ libs
176
176
else require_libraries @ libs
177
177
in
178
178
List. map mk_require_from rq_list
You can’t perform that action at this time.
0 commit comments