https://gitlab.com/nomadic-labs/mi-cho-coq
Raw File
Tip revision: c631a797a0f334a347d89844c3af9289eab494e3 authored by zhenlei on 20 May 2019, 09:16:21 UTC
[oracle_insurance|paper] add specification
Tip revision: c631a79
.gitlab-ci.yml
stages:
  - build

.build:
  stage: build
  image: coqorg/${CI_JOB_NAME}
  before_script:
    - opam update -y
    - sudo apt-get update -y -q
  script:
    - sudo chown -R coq:coq "$CI_PROJECT_DIR"
    - DEBIAN_FRONTEND=noninteractive sudo apt-get install -y -q shellcheck emacs
    - shellcheck `find -name 'configure'`
    - emacs --batch -l scripts/org-lint-README.el --kill
    - opam pin add -k git -y -j ${NJOBS} coq-ott https://github.com/ott-lang/ott.git
    - opam pin add -k git -y -j ${NJOBS} mi-cho-coq .

coq:8.8:
  extends: .build

coq:8.9:
  extends: .build
back to top