https://gitlab.com/tezos/tezos
Raw File
Tip revision: 3d3f593fe987d52e9064e10cc7857d176940953a authored by Martin Tomazic on 20 November 2023, 14:08:38 UTC
lib_kaitai_of_data_encoding: Add inline dependency to input files
Tip revision: 3d3f593
patch-yes_node.sh
#!/bin/sh

# Exit on non-zero status
set -e

# Patch the node sources:
# - the cryptographic library to use fake secret keys,
# - the stresstest command of each protocol that is not frozen to make it work
#   on Tezos Mainnet

for arg in "$@"
do
    case $arg in
        "--dry-run" )
           dry_run='--dry-run'
   esac
done

patch $dry_run -p 1 < scripts/yes-node.patch

for f in src/proto_*/lib_client_commands/client_proto_stresstest_commands.ml
do
  patch $dry_run -p 1 "$f" < scripts/yes-stresstest.patch
done
back to top