Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: verify that code generation works and results match #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,37 @@ jobs:
- run: |
make all

test-validate-repo:
needs: test-build
name: Check validate-repo
runs-on: ubuntu-22.04
timeout-minutes: 5

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21.x

- name: Set env
shell: bash
run: |
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH

- name: Install protoc and plugins
run: |
sudo make install-protoc
make install-protoc-dependencies install-ttrpc-plugin

- name: Force regeneration of protobuf files
run: |
touch pkg/api/api.proto
make all

- name: Validate files in git have not been changed
run: |
make validate-repo

linters:
name: Linters
runs-on: ${{ matrix.os }}
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,13 @@ vet:
golangci-lint:
$(Q)$(GOLANG_CILINT) run

validate-repo:
$(Q)test -z "$$(git status --short | tee /dev/stderr)" || { \
echo "Repository is in invalid state."; \
echo "Please make sure to commit all changes, including generated files."; \
exit 1; \
}

#
# proto generation targets
#
Expand Down
Loading