Skip to content

Commit

Permalink
Add make generate verification step to CircleCI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
AndiDog committed Nov 14, 2024
1 parent 4beb090 commit c32be24
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
steps:
- checkout

- run:
name: Ensure 'make generate' matches commit
command: |
make generate
git diff --exit-code || { echo "There are differences in generated files. Please run and commit 'make generate'. Else we can run into CRDs mismatching the code."; exit 1; }
- run:
name: Build the CAPA docker images
command: |
Expand Down

0 comments on commit c32be24

Please sign in to comment.