Revision 451b29d02b69f9f252fd678e5eeb42c13d2b8e8f authored by Pierre-Yves Strub on 19 March 2017, 18:05:54 UTC, committed by Pierre-Yves Strub on 19 March 2017, 18:05:54 UTC
1 parent acdc38f
Raw File
.travis.yml
sudo: required
dist: trusty
language: ocaml
branches:
  only:
  - 1.0
  - /^deploy-.*$/
services:
- docker
env:
- TARGETS=build
- TARGETS=check
- TARGETS=examples
notifications:
  email:
  - tracker@easycrypt.info
before_install:
- docker pull easycryptpa/ec-build-box
script:
- >-
  docker run -v $PWD:/home/ci/easycrypt easycryptpa/ec-build-box
  sh -c "cd easycrypt && opam config exec -- make ${TARGETS}"
back to top