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

Fix charrua-client-lwt build #65

Merged
merged 3 commits into from
Aug 1, 2017
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
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ env:
global:
- PACKAGE="charrua-core"
- TESTS=true
- PINS="charrua-client:. charrua-unix:."
- DEPOPTS="charrua-client charrua-unix"
- PINS="charrua-client:. charrua-unix:. charrua-client:. charrua-client-lwt:. charrua-client-mirage:."
matrix:
- DISTRO="alpine-3.5" OCAML_VERSION="4.03.0"
- DISTRO="centos-6" OCAML_VERSION="4.04.1"
Expand Down
1 change: 1 addition & 0 deletions charrua-client-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ depends: [
"rresult"
"mirage-random" {>= "1.0.0"}
"duration"
"mirage-time-lwt"
"logs"
"tcpip" {>= "3.0.0"}
"fmt"
Expand Down
3 changes: 2 additions & 1 deletion client/lwt/jbuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
((name dhcp_client_lwt)
(public_name charrua-client-lwt)
(modules (dhcp_client_lwt))
(libraries (charrua-core.wire lwt charrua-client))))
(libraries (charrua-core.wire lwt charrua-client
mirage-time-lwt duration))))
2 changes: 1 addition & 1 deletion test/client/jbuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(executables
((names (test_client))
(libraries (cstruct-unix alcotest charrua-client charrua-core.server))))
(libraries (cstruct-unix alcotest charrua-client charrua-core.server tcpip.unix))))

(alias
((name runtest)
Expand Down
2 changes: 1 addition & 1 deletion test/jbuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(executables
((names (test))
(preprocess (pps (ppx_cstruct)))
(libraries (cstruct-unix io-page.unix charrua-core.server))))
(libraries (cstruct-unix io-page.unix charrua-core.server tcpip.unix))))

(alias
((name runtest)
Expand Down