https://gitlab.com/nomadic-labs/data-encoding/
Raw File
Tip revision: 092d31f35e1582e39cf174fc0dd396d5139f919f authored by Hugo Heuzard on 16 November 2021, 17:36:47 UTC
Apply 1 suggestion(s) to 1 file(s)
Tip revision: 092d31f
.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"
    - OCAML_COMPILER: "4.12.0"

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