https://gitlab.com/tezos/tezos
Raw File
Tip revision: a1fa18363dc2800c84d44a31dfb30b64541c701f authored by Jules Viennot on 28 June 2022, 15:33:33 UTC
Proto: adding infos to the change log
Tip revision: a1fa183
install_build_deps.raw.sh
#!/bin/sh

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

#shellcheck source=scripts/version.sh
. "$script_dir"/version.sh

if [ "$1" = "--tps" ]; then
    opams=$(find "$src_dir/vendors" "$src_dir/src" "$src_dir/tezt" "$src_dir/opam" -name \*.opam -print)
else
    # The TPS evaluation tool requires some extra dependencies that we want to hide from the end user that
    # builds Octez. As such we're not building it by default.
    opams=$(find "$src_dir/vendors" "$src_dir/src" "$src_dir/tezt" "$src_dir/opam" -name \*.opam -not -name tezos-tps-evaluation.opam -print)
fi


export OPAMYES="${OPAMYES:=true}"

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

# conf-rust is commented out because we need users to install a specific version of Rust.
# If we use opam depext, it will probably not install the right version.
# Note that install_build_deps.sh calls install_build_deps.rust.sh
# which checks whether Rust is installed with the right version and explains how
# to install it if needed, so using opam depext is redundant anyway.
conf_packages="conf-gmp conf-libev conf-pkg-config conf-hidapi conf-autoconf conf-zlib conf-g++" #conf-rust

# Opam < 2.1 uses opam-depext as a plugin, later versions provide the option
# `--depext-only`:
case $(opam --version) in
    2.0.* ) opam_depext_command="opam depext $conf_packages" ;;
    * ) opam_depext_command="opam install --depext-only $conf_packages" ;;
esac
## ShellCheck does not fail when non-quoted variables are at the beginning
## of a command:
$opam_depext_command

## 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)

# here we cannot use double quotes because otherwise the list of opam packages
# will be intepreted as a string and not as a list of strings leading to
# an error.
# shellcheck disable=SC2086
opam install $opams --deps-only --with-test --criteria="-notuptodate,-changed,-removed"
back to top