https://github.com/EasyCrypt/easycrypt
Revision 4bcb388f5a4dc17615363b80cd5aadc4eaeadf46 authored by Pierre-Yves Strub on 20 December 2017, 13:51:13 UTC, committed by Pierre-Yves Strub on 20 December 2017, 13:51:13 UTC
1 parent ee3d6a1
Raw File
Tip revision: 4bcb388f5a4dc17615363b80cd5aadc4eaeadf46 authored by Pierre-Yves Strub on 20 December 2017, 13:51:13 UTC
Tip revision: 4bcb388
.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