https://github.com/EasyCrypt/easycrypt
Revision 25c632b5747831539f27254ede3038c96d4fa46b authored by Pierre-Yves Strub on 21 January 2018, 23:32:19 UTC, committed by Pierre-Yves Strub on 21 January 2018, 23:57:32 UTC
Path substitution was not build using the correct old-path
when a theory substitution was in place.

[fix #17361]
1 parent 7cce8c6
Raw File
Tip revision: 25c632b5747831539f27254ede3038c96d4fa46b authored by Pierre-Yves Strub on 21 January 2018, 23:32:19 UTC
Fix bug in theory-cloning renaming
Tip revision: 25c632b
.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