https://gitlab.com/nomadic-labs/mi-cho-coq
Revision 15f6520a186566d981850c8ea4a9eea23c19dbc5 authored by zhenlei on 13 September 2019, 06:07:05 UTC, committed by zhenlei on 13 September 2019, 06:07:05 UTC
1 parent 52ea977
Raw File
Tip revision: 15f6520a186566d981850c8ea4a9eea23c19dbc5 authored by zhenlei on 13 September 2019, 06:07:05 UTC
tmp
Tip revision: 15f6520
.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 xz-utils wget emacs
    - 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-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