Revision 500e67e6238cfa166d065bf0b64d181af8316be3 authored by Théo Winterhalter on 15 October 2019, 15:26:05 UTC, committed by GitHub on 15 October 2019, 15:26:05 UTC
More symmetric approach to conversion of stacks (again 8.8)
2 parent s fb78757 + 8ce8db3
Raw File
.travis.yml
dist: trusty
sudo: required
language: c
cache:
  apt: true
  directories:
  - $HOME/.opam
  - $HOME/bin

addons:
  apt:
    sources:
    - avsm

env:
  global:
  - NJOBS=2
  - COMPILER="4.06.1"
  - CAMLP5_VER="7.05"
  - FINDLIB_VER="1.8.0"
  - COQ_VER="8.8.2"
  - EQUATIONS_VER="1.2+8.8"

install:
- curl -sL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh > install.sh
- export PATH=$HOME/bin:$PATH
- which opam || (rm -rf $HOME/.opam; echo $HOME/bin | sudo sh install.sh --no-backup; opam init --disable-sandboxing -j ${NJOBS} --compiler=${COMPILER} -n -y)
- opam --version
- opam update
- opam init -j ${NJOBS} -n -y --compiler=$COMPILER
- opam switch set ${COMPILER}
- eval $(opam config env)
- opam config list
- opam repo add coq-released https://coq.inria.fr/opam/released || echo "coq-released registered"
- opam install -j ${NJOBS} -y camlp5.${CAMLP5_VER} ocamlfind.${FINDLIB_VER} coq.${COQ_VER} coq-equations.${EQUATIONS_VER}
- opam list

matrix:
  include:
    - name: "Local build"
      env: TARGET=ci-local
    - name: "Opam installation"
      env: TARGET=ci-opam

script:
 - make -j ${NJOBS} ${TARGET}

notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/1d832177d55504ef1fba
      - https://webhooks.gitter.im/e/16c924039f492c4a5640
    on_success: always  # options: [always|never|change] default: always
    on_failure: always  # options: [always|never|change] default: always
    on_start: never     # options: [always|never|change] default: always
back to top