forked from kubernetes-sigs/gateway-api-inference-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.24 KB
/
Copy pathcrd-validation.yml
File metadata and controls
51 lines (42 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CRD Validation
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
contents: read
jobs:
crd-validation:
name: CRD Validation Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
cache: true
- name: Install crdify
run: |
go install sigs.k8s.io/crdify@latest
- name: Run CRD Validation Check
run: |
git fetch origin ${{ github.base_ref }}:upstream_base
BASE_SHA=$(git rev-parse upstream_base)
FAILED=0
for crd in config/crd/bases/*.yaml; do
if ! crdify "git://${BASE_SHA}?path=$crd" "git://HEAD?path=$crd"; then
echo "❌ Incompatible change detected in $crd"
((FAILED++))
else
echo "✅ $crd is valid"
fi
done
if [ "$FAILED" -gt 0 ]; then
echo "::error::Validation failed! Found $FAILED incompatible CRD change(s)."
exit 1
fi
echo "All CRDs are compatible."