This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update proto generation and testing pipelines (#358)
This pull request aims to make it possible to generate, format, and lint the protos within this repo. To accomplish that end, the Dockerfile containing common tools for building the tendermint protos has been moved into this repository and several accompanying changes were made to streamline the proto generation process.
- Loading branch information
1 parent
caaafc4
commit a00de71
Showing
25 changed files
with
421 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
Language: Proto | ||
BasedOnStyle: Google | ||
IndentWidth: 2 | ||
ColumnLimit: 0 | ||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: true | ||
SpacesInSquareBrackets: true | ||
ReflowComments: true | ||
SortIncludes: true | ||
SortUsingDeclarations: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Proto Check | ||
# Protobuf runs buf (https://buf.build/) lint and check-breakage | ||
# This workflow is only run when a file in the proto directory | ||
# has been modified. | ||
on: | ||
workflow_dispatch: # allow running workflow manually | ||
pull_request: | ||
paths: | ||
- "proto/*" | ||
jobs: | ||
proto-lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
steps: | ||
- uses: actions/checkout@v2.4.0 | ||
- name: lint | ||
run: make proto-lint | ||
proto-breakage: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
steps: | ||
- uses: actions/checkout@v2.4.0 | ||
- name: check-breakage | ||
run: make proto-check-breaking-ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# This workflow (re)builds and pushes a Docker image containing the | ||
# protobuf build tools used by the other workflows. | ||
# | ||
# When making changes that require updates to the builder image, you | ||
# should merge the updates first and wait for this workflow to complete, | ||
# so that the changes will be available for the dependent workflows. | ||
# | ||
# TODO(#7272): Update the target location of the builder image. | ||
|
||
name: Build & Push TM Proto Builder | ||
on: | ||
pull_request: | ||
paths: | ||
- "proto/*" | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "proto/*" | ||
schedule: | ||
# run this job once a month to recieve any go or buf updates | ||
- cron: "* * 1 * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.4.0 | ||
- name: Prepare | ||
id: prep | ||
run: | | ||
DOCKER_IMAGE=tendermintdev/docker-build-proto | ||
VERSION=noop | ||
if [[ $GITHUB_REF == refs/tags/* ]]; then | ||
VERSION=${GITHUB_REF#refs/tags/} | ||
elif [[ $GITHUB_REF == refs/heads/* ]]; then | ||
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') | ||
if [ "${{ github.event.repository.default_branch }}" = "$VERSION" ]; then | ||
VERSION=latest | ||
fi | ||
fi | ||
TAGS="${DOCKER_IMAGE}:${VERSION}" | ||
echo ::set-output name=tags::${TAGS} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1.6.0 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1.10.0 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Publish to Docker Hub | ||
uses: docker/build-push-action@v2.7.0 | ||
with: | ||
context: ./proto | ||
file: ./proto/Dockerfile | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.prep.outputs.tags }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
*.gz | ||
*.dvi | ||
.idea | ||
*.pb.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspace tendermintdev/docker-build-proto | ||
HTTPS_GIT := https://github.com/tendermint/spec.git | ||
|
||
############################################################################### | ||
### Protobuf ### | ||
############################################################################### | ||
|
||
proto-all: proto-lint proto-check-breaking | ||
.PHONY: proto-all | ||
|
||
proto-gen: | ||
@echo "Generating Protobuf files" | ||
@$(DOCKER_PROTO_BUILDER) buf generate --template=./buf.gen.yaml --config ./buf.yaml | ||
.PHONY: proto-gen | ||
|
||
proto-lint: | ||
@$(DOCKER_PROTO_BUILDER) buf lint --error-format=json --config ./buf.yaml | ||
.PHONY: proto-lint | ||
|
||
proto-format: | ||
@echo "Formatting Protobuf files" | ||
@$(DOCKER_PROTO_BUILDER) find . -name '*.proto' -path "./proto/*" -exec clang-format -i {} \; | ||
.PHONY: proto-format | ||
|
||
proto-check-breaking: | ||
@$(DOCKER_PROTO_BUILDER) buf breaking --against .git --config ./buf.yaml | ||
.PHONY: proto-check-breaking | ||
|
||
proto-check-breaking-ci: | ||
@$(DOCKER_PROTO_BUILDER) buf breaking --against $(HTTPS_GIT) --config ./buf.yaml | ||
.PHONY: proto-check-breaking-ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# The version of the generation template (required). | ||
# The only currently-valid value is v1beta1. | ||
version: v1beta1 | ||
|
||
# The plugins to run. | ||
plugins: | ||
# The name of the plugin. | ||
- name: gogofaster | ||
# The directory where the generated proto output will be written. | ||
# The directory is relative to where the generation tool was run. | ||
out: proto | ||
# Set options to assign import paths to the well-known types | ||
# and to enable service generation. | ||
opt: Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/duration.proto=github.com/golang/protobuf/ptypes/duration,plugins=grpc,paths=source_relative |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: v1beta1 | ||
|
||
build: | ||
roots: | ||
- proto | ||
- third_party/proto | ||
lint: | ||
use: | ||
- BASIC | ||
- FILE_LOWER_SNAKE_CASE | ||
- UNARY_RPC | ||
ignore: | ||
- gogoproto | ||
breaking: | ||
use: | ||
- FILE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This Dockerfile defines an image containing tools for linting, formatting, | ||
# and compiling the Tendermint protos. | ||
|
||
FROM bufbuild/buf:latest as buf | ||
|
||
FROM golang:1.17-alpine | ||
|
||
# Install a commonly used set of programs for use with our protos. | ||
# clang-extra-tools is included here because it provides clang-format, | ||
# used to format the .proto files. | ||
RUN apk add --update --no-cache build-base clang-extra-tools curl git && \ | ||
apk add --update --no-cache build-base clang-extra-tools curl git go && \ | ||
rm -rf /var/cache/apk/* | ||
|
||
ENV GOLANG_PROTOBUF_VERSION=1.3.1 \ | ||
GOGO_PROTOBUF_VERSION=1.3.2 | ||
|
||
# Retrieve the go protoc programs and copy them into the PATH | ||
RUN go install github.com/golang/protobuf/protoc-gen-go@v${GOLANG_PROTOBUF_VERSION} && \ | ||
go install github.com/gogo/protobuf/protoc-gen-gogo@v${GOGO_PROTOBUF_VERSION} && \ | ||
go install github.com/gogo/protobuf/protoc-gen-gogofaster@v${GOGO_PROTOBUF_VERSION} && \ | ||
mv "$(go env GOPATH)"/bin/* /usr/local/bin/ | ||
|
||
# Copy the 'buf' program out of the buildbuf/buf container. | ||
COPY --from=buf /usr/local/bin/* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
syntax = "proto3"; | ||
package tendermint.libs.bits; | ||
|
||
message BitArray { | ||
int64 bits = 1; | ||
repeated uint64 elems = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.