Skip to content

Commit

Permalink
Fix Makefile (and CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
pirbo committed Mar 8, 2024
1 parent 51de28d commit c27be22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Make Kappa
run: |
opam exec -- make all
opam exec -- dune build
opam exec -- dune build @install
- name: Uninstall nose
run: opam exec -- pip uninstall -y nose
- name: Reinstall nose
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DEFAULT_GOAL := all
DEFAULT_GOAL := all

include externals.mk

Expand Down Expand Up @@ -117,11 +117,11 @@ profiling:
@+$(MAKE) EXTRAFLAGS="-pkg landmarks.ppx -pkg landmarks" OCAML_LANDMARKS="auto,allocation" all

all:
dune build --only-packages kappa-library,kappa-binaries
dune build --only-packages kappa-library,kappa-binaries @install
ln -n -s _build/install/default/bin bin

agents:
dune build --only-packages kappa-library,kappa-binaries,kappa-agents
dune build --only-packages kappa-library,kappa-binaries,kappa-agents @install

clean_ide:
rm -rf gui/Kappa.iconset
Expand Down

1 comment on commit c27be22

@antoinepouille
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yay

Please sign in to comment.