-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Travis CI (Continuous Integration) helpers | ||
|
||
This package installs a set of helper tools that integrate your | ||
OCaml project with the Travis CI (http://travis-ci.org) online | ||
continuous integration system. | ||
|
||
It can test several combinations of OCaml and OPAM across multiple | ||
Linux distributions, making it particularly handy for testing | ||
C linkage or external library dependencies quickly. | ||
|
||
See <https://github.com/ocaml/ocaml-ci-scripts> for more | ||
information and usage. |
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,27 @@ | ||
opam-version: "1.2" | ||
maintainer: "thomas@gazagnaire.org" | ||
homepage: "https://github.com/ocaml/ocaml-ci-scripts" | ||
bug-reports: "https://github.com/ocaml/ocaml-ci-scripts/issues" | ||
dev-repo: "https://github.com/ocaml/ocaml-ci-scripts.git" | ||
authors: [ | ||
"Thomas Gazagnaire" | ||
"Richard Mortier" | ||
"David Sheets" | ||
] | ||
|
||
depends: [ | ||
"ocamlbuild" {build} | ||
] | ||
|
||
depexts: [ | ||
[["alpine"] ["jq"]] | ||
[["centos"] ["jq"]] | ||
[["debian"] ["jq"]] | ||
[["fedora"] ["jq"]] | ||
[["homebrew" "osx"] ["jq"]] | ||
[["opensuse"] ["jq"]] | ||
[["oraclelinux"] ["jq"]] | ||
[["ubuntu"] ["jq"]] | ||
] | ||
|
||
build: [make] |
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 @@ | ||
http: "https://github.com/ocaml/ocaml-ci-scripts/archive/v1.1.0.tar.gz" | ||
checksum: "cd1141d93feecf2c7585a927be9e7e5c" |