https://gitlab.com/nomadic-labs/data-encoding/
Raw File
Tip revision: c80e772b3d7390b0a797a9c982399066227d8bdb authored by Raphaƫl Proust on 17 May 2021, 11:27:41 UTC
Avoid catching runtime exception in registration slicer
Tip revision: c80e772
.gitlab-ci.yml
include: 'https://gitlab.com/nomadic-labs/gitlab-ocaml-ci-example/-/raw/main/.gitlab-ci.yml'

.build-matrix:
  parallel:
    matrix:
    - OCAML_COMPILER: "4.08.1"
    - OCAML_COMPILER: "4.09.1"
    - OCAML_COMPILER: "4.10.0"
    - OCAML_COMPILER: "4.11.1"

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