https://gitlab.com/nomadic-labs/data-encoding/
Raw File
Tip revision: fd82a6d69321a8ae9b97d8c76c98a2ba74e4487d authored by Raphaƫl Proust on 30 July 2021, 14:49:21 UTC
document Binary.read_stream
Tip revision: fd82a6d
.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