* chore: get proto files setup for buf schema registry * WIP on bsr setup * WIP * WIP * full API module + gogo proto building together * switch to pulsar * regen pulsar * API module builds * update ver * cleanup * update script * fix api module * update api * update buf.yaml * add docs * update to pulsar alpha6 Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Frojdi Dymylja <33157909+fdymylja@users.noreply.github.com>
38 lines
956 B
Bash
Executable File
38 lines
956 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
protoc_gen_gocosmos() {
|
|
if ! grep "github.com/gogo/protobuf => github.com/regen-network/protobuf" go.mod &>/dev/null ; then
|
|
echo -e "\tPlease run this command from somewhere inside the cosmos-sdk folder."
|
|
return 1
|
|
fi
|
|
|
|
go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null
|
|
}
|
|
|
|
protoc_gen_gocosmos
|
|
|
|
echo "Generating gogo proto code"
|
|
cd proto
|
|
proto_dirs=$(find ./cosmos -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq)
|
|
for dir in $proto_dirs; do
|
|
for file in $(find "${dir}" -maxdepth 1 -name '*.proto'); do
|
|
if grep go_package $file &> /dev/null ; then
|
|
buf generate --template buf.gen.gogo.yaml $file
|
|
fi
|
|
done
|
|
done
|
|
|
|
cd ..
|
|
|
|
# generate codec/testdata proto code
|
|
(cd testutil/testdata; buf generate)
|
|
|
|
# move proto files to the right places
|
|
cp -r github.com/cosmos/cosmos-sdk/* ./
|
|
rm -rf github.com
|
|
|
|
go mod tidy
|
|
|
|
./scripts/protocgen2.sh |