Revision a7ba07fa195296c228d92cb5049a3a8601d10b58 authored by Raphaƫl Cauderlier on 29 May 2019, 09:23:37 UTC, committed by Arvid Jakobsson on 29 November 2019, 13:40:31 UTC
TOFIX:

  Currently the syntax of Michelson is not shared with michelson.ott.
  Moreover I used `:` for the typing relation and `::` for stack
  consing whereas the documentation (and michelson.ott) use `:` for
  consing and `::` for typing.
1 parent cdc97c1
Raw File
.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://storage.googleapis.com/shellcheck/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 .

coq:8.8:
  extends: .build

coq:8.9:
  extends: .build

coq:8.10:
  extends: .build
back to top