This Opam repository contains the OCaml components of the XenServer toolstack and their upstream dependencies.
You can add this Git repository as a remote OPAM repository:
opam repo add xs-opam-yangtze https://github.com/xapi-project/xs-opam.git#release/yangtze/lcm
To install a package $PKG it's enough to run
opam depext $PKG
opam install $PKG
For development, it is often useful to clone the package sources and only install its dependencies, leaving the job to build the package and make changes to the developer. This can be done as follows:
opam depext $PKG
opam install --deps-only $PKG
After that, you can enter the folder containing the cloned sources and run the appropriate build command.
Packages are organised into namespaces:
upstream
: upstream packages for xsupstream-extra
: upstream packages required for xs-extraxs
: packages required for xs-extraxs-extra
: toolstack components - latest version
Travis builds the entire universe represented by this Opam repository.
Load the config on the install step for .travis-docker.sh at install time, then run the script for testing your package:
language: c
service: docker
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh
- wget https://raw.githubusercontent.com/xapi-project/xs-opam/master/tools/xs-opam-ci.env
- source xs-opam-ci.env
script: bash -ex .travis-docker.sh
env:
global:
- PINS="EXAMPLE:."
jobs:
- PACKAGE="EXAMPLE"