swh:1:snp:9c27352633c4639a943e316050a7b904f57900e2
Raw File
Tip revision: 713396c08855a4c17e4576466495bff22cbec020 authored by smelc on 20 May 2020, 14:32:52 UTC
Merge branch 'smelc-mockup-remove-lwt_main_run' into 'master'
Tip revision: 713396c
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=4dd2620bcc821418bae53669a6c6163964c090a2

## opam_repository is an additional, tezos-specific opam repository.
opam_repository_tag=032a8bcaccc6ff9e0dc3dc1379db89d87e73722d
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