swh:1:snp:61dcfc0dd5674a0e65803e88039c122d9532074e
Raw File
Tip revision: 963837326e48848d72ea3f8b6bf4c424d295987b authored by Raphaƫl Proust on 14 September 2022, 13:12:07 UTC
Merge branch 'length-should-fail-if-write-would-fail-too' into 'master'
Tip revision: 9638373
.gitlab-ci.yml
include: 'https://gitlab.com/nomadic-labs/gitlab-ocaml-ci-example/-/raw/main/.gitlab-ci.yml'

.build-matrix:
  before_script:
    - sudo apt-get update
    - sudo apt-get install --yes libgmp-dev
    - sudo apt-get install --yes nodejs
  parallel:
    matrix:
    - OCAML_COMPILER: "4.10.2"
    - OCAML_COMPILER: "4.11.2"
    - OCAML_COMPILER: "4.12.1"
    - OCAML_COMPILER: "4.13.1"
    - OCAML_COMPILER: "4.14.0"

variables:
  CLEAN_OPAM_CACHE: "false"
  CLEAN_DUNE_CACHE: "false"
  DUNE_BUILD_TARGETS: "@src/all"
  DUNE_TEST_TARGETS: "@fmt @runtest @runtest_js"
  DUNE_DOC_TARGETS: "@doc"
back to top