2022-10-25 10:06:21 -04:00
|
|
|
# This workflow check
|
|
|
|
name: Operator code generation check
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- "release/**"
|
|
|
|
paths:
|
|
|
|
- "operators/**"
|
2023-01-19 04:35:48 -05:00
|
|
|
- "./.github/workflows/test-operator-codegen.yml"
|
2022-10-25 10:06:21 -04:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "operators/**"
|
2023-01-19 04:35:48 -05:00
|
|
|
- "./.github/workflows/test-operator-codegen.yml"
|
2022-10-25 10:06:21 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
govulncheck:
|
|
|
|
name: check-codegen
|
2022-11-10 10:55:24 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2022-10-25 10:06:21 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-07-03 02:19:10 -04:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-10-25 10:06:21 -04:00
|
|
|
with:
|
2022-12-19 09:21:28 -05:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
2022-10-25 10:06:21 -04:00
|
|
|
|
|
|
|
- name: Setup Go environment
|
2023-07-03 02:19:10 -04:00
|
|
|
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
|
2022-10-25 10:06:21 -04:00
|
|
|
with:
|
2023-08-03 06:07:27 -04:00
|
|
|
go-version: "1.20.7"
|
2022-10-25 10:06:21 -04:00
|
|
|
cache: true
|
|
|
|
|
|
|
|
- name: Run code generation
|
|
|
|
shell: bash
|
|
|
|
working-directory: "operators/"
|
|
|
|
run: |
|
|
|
|
dirs=$(find . \! -name . -prune -type d)
|
|
|
|
for dir in $dirs; do
|
2022-11-11 08:49:16 -05:00
|
|
|
(cd "$dir"; make manifests generate)
|
2022-10-25 10:06:21 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
- name: Check diff and fail on changes
|
|
|
|
shell: bash
|
|
|
|
run: git diff --exit-code
|