-
Notifications
You must be signed in to change notification settings - Fork 0
172 lines (144 loc) · 4.88 KB
/
ci.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Continuous integration
on:
pull_request:
branches:
- main
env:
# renovate: datasource=golang-version depName=go
GO_VERSION: '1.23.3'
# renovate: datasource=github-releases depName=golangci/golangci-lint versioning=semver
GOLANG_CI_VERSION: 'v1.62.2'
# renovate: datasource=github-releases depName=docker/buildx versioning=semver
BUILDX_VERSION: 'v0.18.0'
jobs:
changes:
name: Check changes
runs-on: ubuntu-latest
outputs:
go: ${{ steps.changes.outputs.go }}
manifests: ${{ steps.changes.outputs.manifests }}
renovate: ${{ steps.changes.outputs.renovate }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Check changes
id: changes
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
ci: &ci
- .github/workflows/ci.yaml
go:
- go.mod
- go.sum
- '**/*.go'
- *ci
manifests:
- 'install/base/**/*.yaml'
- *ci
renovate:
- .github/renovate.json
- *ci
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Run golangci-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
version: ${{ env.GOLANG_CI_VERSION }}
go-test:
name: Go test
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: make test
go-build:
name: Go build
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: make build
check-generated:
name: Check generated code and manifests
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Install controller-gen
run: make install-controller-gen
- name: Run generators
run: make generators
- name: Make sure everything is up to date
run: git diff --exit-code
deploy-to-kind:
name: Deploy to kind cluster
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.go == 'true' || needs.changes.outputs.manifests == 'true' }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
with:
version: ${{ env.BUILDX_VERSION }}
- name: Install kind
run: make install-kind
- name: Install kubectl
run: make install-kubectl
- name: Create kind cluster
run: make create-kind-cluster
- name: Build container
run: make build-container
- name: Deploy to kind cluster
run: make deploy-to-kind-cluster
renovate-validate:
name: Validate Renovate config
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.renovate == 'true'
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Validate config
env:
RENOVATE_VERSION: 39.26.3@sha256:60c8adbdc8d9732c244d77ec6e9c997723eedd9ebf3608c6cf90bab783a2b1bc
run: >
docker run --rm -v ./.github/renovate.json:/renovate.json
--entrypoint renovate-config-validator
ghcr.io/renovatebot/renovate:${RENOVATE_VERSION} /renovate.json