swh:1:snp:9c27352633c4639a943e316050a7b904f57900e2
Raw File
Tip revision: 6d1d41f9b31885c9a4941aceebdb49775a833327 authored by Pierre Boutillier on 03 September 2020, 09:18:49 UTC
Fixups linking 007-PsDeLphi
Tip revision: 6d1d41f
version.sh
#! /bin/sh

## `ocaml-version` should be in sync with `README.rst` and
## `lib.protocol-compiler/tezos-protocol-compiler.opam`

ocaml_version=4.09.1
opam_version=2.0

## Please update `.gitlab-ci.yml` accordingly
## full_opam_repository is a commit hash of the public OPAM repository, i.e.
## https://github.com/ocaml/opam-repository
full_opam_repository_tag=ab47b82abdc03e43c67b45b714806ca4d43d7091

## opam_repository is an additional, tezos-specific opam repository.
opam_repository_tag=6d1227cc7e4df7a163aeb0d87e4d75e56de6cb5c
opam_repository_url=https://gitlab.com/tezos/opam-repository.git
opam_repository=$opam_repository_url\#$opam_repository_tag

## Other variables, used both in Makefile and scripts
COVERAGE_OUTPUT=_coverage_output
back to top