build(deps): Bump github.com/linxGnu/grocksdb from 1.8.12 to 1.8.14 in /store (#19829)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: yihuang <yi.codeplayer@gmail.com>
Co-authored-by: yihuang <huang@crypto.com>
This commit is contained in:
dependabot[bot]
2024-03-22 15:26:21 +00:00
committed by GitHub
co-authored by github-actions yihuang yihuang
parent 32d63e02c5
commit ac61b69ae1
62 changed files with 123 additions and 115 deletions
+13 -6
View File
@@ -8,10 +8,17 @@ for modfile in $(find . -name go.mod); do
(cd $DIR; go mod tidy)
done
if ! command -v gomod2nix &> /dev/null
then
echo "gomod2nix could not be found in PATH, installing..."
go install github.com/nix-community/gomod2nix@latest
fi
# update gomod2nix.toml for simapp
cd simapp; gomod2nix
# NOTE: gomod2nix should be built using the same go version as the project, the nix flake will make sure of that
# automatically.
cd simapp
if command -v nix &> /dev/null
nix develop .. -c gomod2nix
then
if ! command -v gomod2nix &> /dev/null
then
echo "gomod2nix could not be found in PATH, installing..."
go install github.com/nix-community/gomod2nix@latest
fi
gomod2nix
fi