swh:1:snp:61dcfc0dd5674a0e65803e88039c122d9532074e
Raw File
Tip revision: 5fcd9b5364a2a3255c95c9783d376991ad4806ff authored by Yann Regis-Gianas on 05 January 2021, 13:20:56 UTC
Merge branch 'yrg@optimize-union' into 'master'
Tip revision: 5fcd9b5
.gitlab-ci.yml
build-and-test:
  image: ocaml/opam2:alpine-3.10-ocaml-4.08
  script:
    - opam repository set-url default https://opam.ocaml.org
    - opam update
    - opam pin --no-action data-encoding .
    - opam depext ocamlformat.0.11.0
    - opam install ocamlformat.0.11.0
    - dune build @fmt
    - opam depext data-encoding
    - opam install --deps-only data-encoding
    - dune build
    - opam depext --dry-run crowbar alcotest
    - opam install --deps-only --with-test .
    - dune runtest
back to top