https://github.com/EasyCrypt/easycrypt
Revision 7f64de1aceb6de9f6a4a6e010efd9c55d64b81f9 authored by Pierre-Yves Strub on 04 November 2017, 22:36:30 UTC, committed by Pierre-Yves Strub on 04 November 2017, 22:36:30 UTC
1 parent c7988e8
Raw File
Tip revision: 7f64de1aceb6de9f6a4a6e010efd9c55d64b81f9 authored by Pierre-Yves Strub on 04 November 2017, 22:36:30 UTC
docker: add support for sphinx in the doc-box.
Tip revision: 7f64de1
.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
after_failure:
- >-
  [ -f report.log ] && curl -sT report.log http://chunk.io/
script:
- >-
  docker run -v $PWD:/home/ci/easycrypt easycryptpa/ec-build-box
  sh -c "git clone easycrypt easycrypt.dev && cd easycrypt.dev && opam config exec -- make ${TARGETS}"
back to top