https://gitlab.com/tezos/tezos
Raw File
Tip revision: 6e3dec6dfffaf1020282dabfa98c45ab1b66d51a authored by Diane Gallois-Wong on 14 March 2024, 16:53:36 UTC
Tezt/operation: swap run and waiter, so that the test doesn't hang
Tip revision: 6e3dec6
update_opam_repo.sh
#!/bin/sh

cat << EOT
This script is deprecated.

To update dependencies, you have to:

- in tezos/tezos:
  - update version constraints in manifest/ and run: make -C manifest
  - update full_opam_repository_tag in: scripts/version.sh
  - update the lock file in: opam/virtual/octez-deps.opam.locked
    (for instance using: scripts/update_opam_lock.sh)

- in tezos/opam-repository:
  - update opam_repository_commit_hash in: scripts/version.sh
    (to match full_opam_repository_tag from scripts/version.sh from tezos/tezos)
  - update the opam lock file: octez-deps.opam.locked
    (copy opam/virtual/octez-deps.opam.locked from tezos/tezos)

More information in the documentation:
http://tezos.gitlab.io/developer/contributing-adding-a-new-opam-dependency.html
EOT

exit 1
back to top