-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to Dune * update travis file to opam 2 * 4.03.2 isn't a thing
- Loading branch information
1 parent
fb44bc7
commit 8ce657c
Showing
11 changed files
with
42 additions
and
61 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 |
---|---|---|
|
@@ -7,3 +7,7 @@ | |
*.cmx | ||
*.cmxs | ||
*.cmxa | ||
_build | ||
.merlin | ||
*.install | ||
|
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,19 +1,15 @@ | ||
language: c | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh | ||
script: bash -ex .travis-opam.sh | ||
sudo: false | ||
addons: | ||
apt: | ||
sources: | ||
- avsm | ||
packages: | ||
- m4 | ||
- ocaml | ||
- ocaml-base | ||
- ocaml-base-nox | ||
- ocaml-compiler-libs | ||
- ocaml-native-compilers | ||
- ocaml-nox | ||
|
||
services: | ||
- docker | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh | ||
script: bash -ex ./.travis-docker.sh | ||
env: | ||
- FORK_USER=talex5 FORK_BRANCH=containers OPAMYES=true PACKAGE=lwt-parallel OCAML_VERSION=latest TESTS=true | ||
global: | ||
- PINS="lwt-parallel:." | ||
matrix: | ||
- PACKAGE="lwt-parallel" DISTRO="ubuntu-16.04" OCAML_VERSION="4.07.1" | ||
- PACKAGE="lwt-parallel" DISTRO="ubuntu-16.04" OCAML_VERSION="4.06.0" | ||
- PACKAGE="lwt-parallel" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2" | ||
- PACKAGE="lwt-parallel" DISTRO="ubuntu-16.04" OCAML_VERSION="4.03.0" | ||
- PACKAGE="lwt-parallel" DISTRO="debian-unstable" OCAML_VERSION="4.07.1" |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.6) | ||
(name lwt-parallel) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
(library | ||
(name parallel) | ||
(public_name lwt-parallel) | ||
(libraries lwt.unix logs.lwt) | ||
(flags (:standard -w -9-27-32-34-38-39))) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,22 +1,19 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
name: "lwt-parallel" | ||
version: "master" | ||
maintainer: "Ivan Gotovchits <[email protected]>" | ||
authors: "Ivan Gotovchits <[email protected]>" | ||
homepage: "https://github.com/ivg/parallel" | ||
bug-reports: "https://github.com/ivg/parallel/issues" | ||
dev-repo: "https://github.com/ivg/parallel.git" | ||
dev-repo: "git+https://github.com/ivg/parallel.git" | ||
license: "MIT" | ||
build: [ | ||
["oasis" "setup"] | ||
["./configure" "--prefix=%{prefix}%"] | ||
[make] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
install: [make "install"] | ||
remove: ["ocamlfind" "remove" "lwt-parallel"] | ||
depends: [ | ||
"base-unix" | ||
"lwt" {>= "2.7.0"} | ||
"ocamlfind" {build} | ||
"oasis" {build} | ||
"dune" {build} | ||
"logs" | ||
] | ||
synopsis: "Lwt-enabled parallel computing library" |