https://github.com/EasyCrypt/easycrypt
Revision 3e10ebb97a851b298f3b5023239314791d27ea46 authored by Benjamin Gregoire on 21 July 2017, 13:25:02 UTC, committed by Benjamin Gregoire on 21 July 2017, 13:32:33 UTC
1 parent d831de8
Raw File
Tip revision: 3e10ebb97a851b298f3b5023239314791d27ea46 authored by Benjamin Gregoire on 21 July 2017, 13:25:02 UTC
restart the proof of cramershoup
Tip revision: 3e10ebb
.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