Skip to content

Commit

Permalink
ci: ignore OWNERS file for protolock commands
Browse files Browse the repository at this point in the history
  • Loading branch information
wuhuizuo committed Apr 1, 2024
1 parent f0982ee commit 644d774
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions scripts/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,20 @@ check-protos-compatible() {
export PATH=$GOPATH/bin:$PATH

if [ ! -f "$GOPATH/bin/protolock" ]; then
GO111MODULE=off go install github.com/nilslice/protolock/cmd/[email protected]
go install github.com/nilslice/protolock/cmd/[email protected]
fi
which protolock || {
echo "not found protolock in PATH."
ls -l "$GOPATH/bin/protolock"
exit 1
}

if protolock status -lockdir=scripts -protoroot=proto; then
protolock commit -lockdir=scripts -protoroot=proto
if protolock status -lockdir=scripts -protoroot=proto --ignore=OWNERS; then
protolock commit -lockdir=scripts -protoroot=proto --ignore=OWNERS
else
echo "Meet break compatibility problem, please check the code."
# In order not to block local branch development, when meet break compatibility will force to update `proto.lock`.
protolock commit --force -lockdir=scripts -protoroot=proto
protolock commit --force -lockdir=scripts -protoroot=proto --ignore=OWNERS
fi
# git report error like "fatal: detected dubious ownership in repository at" when reading the host's git folder
git config --global --add safe.directory $(pwd)
Expand Down

0 comments on commit 644d774

Please sign in to comment.