Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure make install_deps matches what is required to build and test #486

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,32 @@ test_generator: generator

$(ASSIGNMENTS_GEN): test_generator
dune exec ./bin_test_gen/test_gen.exe --root=./test-generator/ -- --exercise $(@:.gen=) --filter-broken true

generate_exercises: $(ASSIGNMENTS_GEN)

install_deps:
opam install dune fpath ocamlfind ounit qcheck react ppx_deriving ppx_let ppx_sexp_conv yojson ocp-indent calendar getopts
open update
georgyo marked this conversation as resolved.
Show resolved Hide resolved
opam install core \
core_unix \
merlin \
yaml \
ezjsonm \
mustache \
dune \
fpath \
ocamlfind \
ounit \
ounit2 \
qcheck \
react \
ppx_deriving \
ppx_let \
ppx_sexp_conv \
yojson \
ocp-indent \
calendar \
getopts \
stdio

clean:
dune clean --root=./test-generator/
Expand Down