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

Run dune from the crate root to regenerate .opam files #448

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ clean-generated:
clean: clean-generated
cd charon && cargo clean
cd charon/macros && cargo clean
cd charon-ml && dune clean
dune clean

# Build the Nix packages
.PHONY: nix
Expand Down
4 changes: 2 additions & 2 deletions charon-ml/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ build: format build-dev
# Build, without formatting the code
.PHONY: build-dev
build-dev:
dune build && dune build @doc
cd .. && dune build && dune build @doc

# The tests.
# You can use the environment variable "CHARON_LOG" to activate the log.
# For instance: `CHARON_LOG=1 make tests`.
.PHONY: tests
tests: copy-tests
dune test
cd .. && dune test

# Reformat the code
.PHONY: format
Expand Down
File renamed without changes.
File renamed without changes.
Loading