Revision 719cde3475c0aa58828bb146841e808711b03a37 authored by Sylvain Ribstein on 14 February 2020, 13:44:31 UTC, committed by Adrian Brink on 24 February 2020, 16:50:59 UTC
add:
- rpc : get /protocols/<PROTOCOL_HASH>/environment
- command : "protocol environment <PROTOCOL_HASH>"
1 parent 1bfad4c
Raw File
install_build_deps.raw.sh
#! /bin/sh

script_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)/")"
src_dir="$(dirname "$script_dir")"

. "$script_dir"/version.sh

opams=$(find "$src_dir/vendors" "$src_dir/src" -name \*.opam -print)

export OPAMYES=${OPAMYES:=true}

## In another ideal world, this list should be extracted from the pinned
## packages and filter only conf-* packages

opam depext conf-gmp conf-libev conf-m4 conf-perl conf-pkg-config conf-hidapi

## In an ideal world, `--with-test` should be present only when using
## `--dev`. But this would probably break the CI, so we postponed this
## change until someone have some spare time. (@pirbo, @hnrgrgr)

opam install $opams --deps-only --with-test --criteria="-notuptodate,-changed,-removed"
back to top