forked from redhat-developer/gitops-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a check for consistency of generated manifests (redhat-developer#738
) Signed-off-by: Jonathan West <[email protected]>
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 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,60 @@ | ||
name: Verify generated code is up to date | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
check-go-modules: | ||
name: "Check for go.mod/go.sum synchronicity" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup Golang | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: 'go.mod' | ||
- name: Download all Go modules | ||
run: | | ||
go mod download | ||
- name: Check for tidyness of go.mod and go.sum | ||
run: | | ||
go mod tidy | ||
git diff --exit-code -- . | ||
check-sdk-codegen: | ||
name: "Check for changes from make bundle" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup Golang | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: 'go.mod' | ||
- name: Run make bundle | ||
run: | | ||
make bundle | ||
# We ignore '*createdAt:*' because various generated YAMLs have a 'createdAt' field that is always updated with the current time. | ||
|
||
- name: Ensure there is no diff in bundle | ||
run: | | ||
git diff --ignore-matching-lines='.*createdAt:.*' --exit-code -- . | ||
- name: Run make generate | ||
run: | | ||
make generate | ||
- name: Ensure there is no diff in generated assets | ||
run: | | ||
git diff --ignore-matching-lines='.*createdAt:.*' --exit-code -- . | ||
- name: Run make manifests | ||
run: | | ||
make manifests | ||
- name: Ensure there is no diff in manifests | ||
run: | | ||
git diff --ignore-matching-lines='.*createdAt:.*' --exit-code -- . |