-
Notifications
You must be signed in to change notification settings - Fork 50
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 #80 from avsm/multi-distro-travis
Add multi-distro testing via Travis/Docker containers
- Loading branch information
Showing
2 changed files
with
16 additions
and
9 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,13 +1,19 @@ | ||
language: c | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh | ||
script: bash -ex .travis-opam.sh | ||
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="cstruct" | ||
- PACKAGE="cstruct" | ||
- DEPOPTS="camlp4 ppx_tools async lwt" | ||
- REVDEPS="tls dns irmin tcpip" | ||
matrix: | ||
- OCAML_VERSION=4.02 REVDEPS=tls | ||
- OCAML_VERSION=4.02 DEPOPTS="lwt" REVDEPS="dns irmin" | ||
- OCAML_VERSION=4.02 DEPOPTS="async" | ||
- OCAML_VERSION=4.01 DEPOPTS="async lwt" REVDEPS=mirage | ||
- OCAML_VERSION=4.01 DEPOPTS="camlp4" | ||
- OCAML_VERSION=4.02 DEPOPTS="ppx_tools" | ||
- DISTRO="debian-stable" OCAML_VERSION="4.01.0" DEPOPTS="camlp4 lwt" | ||
- DISTRO="debian-testing" OCAML_VERSION="4.02.3" | ||
- DISTRO="ubuntu-14.04" OCAML_VERSION="4.02.3" | ||
- DISTRO="ubuntu-15.10" OCAML_VERSION="4.02.3" | ||
- DISTRO="centos-7" OCAML_VERSION="4.02.3" | ||
- DISTRO="centos-6" OCAML_VERSION="4.02.3" | ||
- DISTRO="fedora-23" OCAML_VERSION="4.02.3" |
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