-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from djs55/io-page
Add dependency on io-page-unix
- Loading branch information
Showing
10 changed files
with
43 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
language: c | ||
install: | ||
- wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh | ||
script: bash -ex .travis-opam.sh | ||
sudo: required | ||
sudo: false | ||
services: | ||
- docker | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh | ||
script: bash -ex ./.travis-docker.sh | ||
env: | ||
global: | ||
- PACKAGE="protocol-9p-unix" | ||
- OCAML_VERSION=4.03 | ||
- DEPOPTS="named-pipe" | ||
- PINS="protocol-9p:. protocol-9p-tool:. protocol-9p-unix:." | ||
matrix: | ||
- PACKAGE="protocol-9p" DISTRO="alpine-3.5" OCAML_VERSION="4.03.0" | ||
- PACKAGE="protocol-9p-unix" DISTRO="alpine-3.5" OCAML_VERSION="4.03.0" | ||
- PACKAGE="protocol-9p-tool" DISTRO="alpine-3.5" OCAML_VERSION="4.03.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
(jbuild_version 1) | ||
|
||
(library | ||
((name protocol_9p) | ||
(public_name protocol-9p) | ||
(libraries (result rresult cstruct cstruct.lwt sexplib lwt mirage-flow-lwt mirage-channel-lwt mirage-kv-lwt astring fmt)) | ||
(libraries (result rresult cstruct cstruct-lwt sexplib lwt mirage-flow-lwt mirage-channel-lwt mirage-kv-lwt astring fmt)) | ||
(preprocess (pps (ppx_sexp_conv))) | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
(jbuild_version 1) | ||
|
||
(library | ||
((name protocol_9p_unix) | ||
(public_name protocol-9p-unix) | ||
(libraries (result fmt lwt mirage-flow-lwt cstruct astring named-pipe.lwt | ||
protocol_9p io-page.unix prometheus)) | ||
protocol-9p io-page.unix prometheus)) | ||
)) |