-
Notifications
You must be signed in to change notification settings - Fork 13
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
Switch to jbuilder, prepare to release 1.1.0 #7
Changes from 3 commits
e8b8761
a28d7b9
5f9d61c
b88de3b
7a022c8
dacc27a
f603ff3
1bbec7d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
all: | ||
ocaml pkg/pkg.ml build -n mirage-net | ||
ocaml pkg/pkg.ml build -n mirage-net-lwt | ||
|
||
.PHONY: build clean test | ||
|
||
build: | ||
jbuilder build @install | ||
|
||
test: | ||
jbuilder runtest | ||
|
||
install: | ||
jbuilder install | ||
|
||
uninstall: | ||
jbuilder uninstall | ||
|
||
clean: | ||
ocaml pkg/pkg.ml clean -n mirage-net | ||
ocaml pkg/pkg.ml clean -n mirage-net-lwt | ||
rm -rf _build |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.1.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.1.0 | ||
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(library | ||
((name mirage_net) | ||
(public_name mirage-net) | ||
(libraries (bytes result mirage-device)) | ||
(modules (Mirage_net)) | ||
(flags (:standard -w "A-4-41-44" -warn-error "+1..49" -safe-string)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure about adding warning errors to the build runes run which will be run after the release. I thing it's better to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In this case I coped the contents of the Wrt to
(I was never a |
||
(wrapped false) | ||
)) | ||
|
||
(library | ||
((name mirage_net_lwt) | ||
(public_name mirage-net-lwt) | ||
(libraries (result mirage-net lwt io-page cstruct ipaddr)) | ||
(modules (Mirage_net_lwt)) | ||
(flags (:standard -w "A-4-41-44" -warn-error "+1..49" -safe-string)) | ||
(wrapped false) | ||
)) |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not needed with beta9 which adds a new
jbuilder subst
CLI option to do exactly the same watermarking as topkg does.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(so you can continue to use %%VERSION%% in various places)