Skip to content

Commit

Permalink
ci: verify code generation and generated files in repo
Browse files Browse the repository at this point in the history
Signed-off-by: Antti Kervinen <[email protected]>
  • Loading branch information
askervin committed Oct 1, 2024
1 parent 668be88 commit 505243a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,22 @@ jobs:
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 on build
run: |
touch pkg/api/api.proto
- run: |
make all
- name: Validate files in git have not been changed
run: |
make validate-repo-changes-are-staged
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-changes-are-staged:
$(Q)test -z "$$(git status --short | tee /dev/stderr)" || { \
echo "Repository has unstaged changes."; \
echo "Please make sure to commit all changes, including generated files."; \
exit 1; \
}

#
# proto generation targets
#
Expand Down

0 comments on commit 505243a

Please sign in to comment.