Skip to content

Commit

Permalink
Merge branch 'rampup' into dkijania/fix_duplicated_zkapp_account_prec…
Browse files Browse the repository at this point in the history
…ondition_table
  • Loading branch information
deepthiskumar authored Jan 6, 2024
2 parents 3246464 + ec9ed09 commit 0a77bd7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
13 changes: 11 additions & 2 deletions src/lib/crypto/kimchi_backend/common/gen_version.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
#!/usr/bin/env bash
set -e -o pipefail
if [ -z ${MARLIN_REPO_SHA+x} ]; then
marlin_submodule_dir=$(git submodule status | grep proof-systems | sed 's/^[-\ ]//g' | cut -d ' ' -f 2)
marlin_repo_sha=$(cd $marlin_submodule_dir && git rev-parse --short=8 --verify HEAD)
# Check for the existence of the 'mina' submodule
git_root=$(git rev-parse --show-toplevel)
mina_submodule=$(git submodule status | grep "mina" || true)

if [[ -n "$mina_submodule" ]]; then
marlin_submodule_dir=$(git -C "$git_root/src/mina" submodule status | grep proof-systems | sed 's/^[-\ ]//g' | cut -d ' ' -f 2)
marlin_repo_sha=$(git -C "$git_root/src/mina/$marlin_submodule_dir" rev-parse --short=8 --verify HEAD)
else
marlin_submodule_dir=$(git submodule status | grep proof-systems | sed 's/^[-\ ]//g' | cut -d ' ' -f 2)
marlin_repo_sha=$(git -C "$marlin_submodule_dir" rev-parse --short=8 --verify HEAD)
fi
else
marlin_repo_sha=$(cut -b -8 <<< "$MARLIN_REPO_SHA")
fi
Expand Down
7 changes: 6 additions & 1 deletion src/lib/mina_version/normal/gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ pushd "$root" > /dev/null
if [[ -e .git ]] && ! git diff --quiet; then id="[DIRTY]$id"; fi
commit_date="${MINA_COMMIT_DATE-$(git show HEAD -s --format="%cI" || echo "<unknown>")}"

pushd src/lib/crypto/proof-systems > /dev/null
mina_submodule=$(git submodule status | grep "mina" || true)
if [[ -n "$mina_submodule" ]]; then
pushd src/mina/src/lib/crypto/proof-systems > /dev/null
else
pushd src/lib/crypto/proof-systems > /dev/null
fi
marlin_commit_id="${MARLIN_COMMIT_ID-$(git rev-parse --verify HEAD || echo "<unknown>")}"
marlin_commit_id_short="$(printf '%s' "$marlin_commit_id" | cut -c1-8)"
if [[ -e .git ]] && ! git diff --quiet; then marlin_commit_id="[DIRTY]$marlin_commit_id"; fi
Expand Down
2 changes: 1 addition & 1 deletion src/libp2p_ipc/dune
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(library
(name libp2p_ipc)
(public_name libp2p_ipc)
(flags -w -53)
(flags -w -53-55)
(inline_tests (flags -verbose -show-counts))
(libraries
;; opam libraries
Expand Down

0 comments on commit 0a77bd7

Please sign in to comment.