https://gitlab.com/nomadic-labs/mi-cho-coq
Revision 41fed528c56dc344de54402365c0d04e4a01392f authored by Guillaume Claret on 03 December 2019, 15:35:40 UTC, committed by Raphaƫl Cauderlier on 18 April 2020, 12:03:13 UTC
1 parent e94f138
Raw File
Tip revision: 41fed528c56dc344de54402365c0d04e4a01392f authored by Guillaume Claret on 03 December 2019, 15:35:40 UTC
[of_ocaml] Bijection for the comparable types
Tip revision: 41fed52
.gitlab-ci.yml
stages:
  - build

.build:
  stage: build
  image: coqorg/${CI_JOB_NAME}
  before_script:
    - opam switch $COMPILER_EDGE; eval $(opam env)
    - 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 xz-utils wget emacs libgmp-dev
    - export scversion="latest"
    - wget -qO- "https://github.com/koalaman/shellcheck/releases/download/latest/shellcheck-"${scversion}".linux.x86_64.tar.xz" | tar -xJv
    - shellcheck-"${scversion}"/shellcheck `find -name 'configure'`
    - emacs --batch -l scripts/org-lint-README.el --kill
    - opam pin add -k git -y -j ${NJOBS} coq-mi-cho-coq .
    - which michocoq

coq:8.8:
  extends: .build

coq:8.9:
  extends: .build

coq:8.10:
  extends: .build
back to top