https://gitlab.com/tezos/tezos
Raw File
Tip revision: 2aec4af02ab4ea64c45c682b525f8a4173574a86 authored by Pierrick Couderc on 09 November 2022, 09:15:21 UTC
Env: update with `Wasm.get_outbox_size`
Tip revision: 2aec4af
install_build_deps.raw.sh
#!/bin/sh

set -e

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

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

opams=$(find "$src_dir/vendors" "$src_dir/src" "$src_dir/tezt" "$src_dir/opam" -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

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

# Follow up of the previous explanation: We make opam acknowledge
# that we have a rust compiler we installed by our own.
OPAMASSUMEDEPEXTS=true opam install conf-rust

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

if [ "$1" = "--tps" ]; then
    opam install caqti-driver-postgresql
fi
back to top