Revision c1d827ce22e1c0e53f7b559bb65aed9f35845805 authored by Raphaël Cauderlier on 28 November 2019, 10:03:17 UTC, committed by Raphaël Cauderlier on 28 November 2019, 10:03:17 UTC
Remove IF_RIGHT

See merge request nomadic-labs/mi-cho-coq!47
2 parent s a7655d8 + ac14acd
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
back to top