https://gitlab.com/nomadic-labs/data-encoding/
Revision c12e6c03f79a3948e3cd5c774b5bd22bfbcb1f01 authored by Raphaël Proust on 07 March 2020, 22:55:43 UTC, committed by Raphaël Proust on 07 March 2020, 22:55:43 UTC
Note: some of the code is based on @romain.nl similar function in the
Tezos project
1 parent c38bfaf
Raw File
Tip revision: c12e6c03f79a3948e3cd5c774b5bd22bfbcb1f01 authored by Raphaël Proust on 07 March 2020, 22:55:43 UTC
PARTIAL: start of work (some incomplete) on pp_of_encoding
Tip revision: c12e6c0
.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