-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (55 loc) · 1.62 KB
/
Copy pathci.yml
File metadata and controls
63 lines (55 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
k8s:
name: k8s
runs-on: ubuntu-24.04
strategy:
matrix:
k8s: [v1.29.14, v1.31.14, v1.33.7, v1.35.0]
steps:
- name: Set up Go 1.25
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version: '1.25'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Create Kubernetes ${{ matrix.k8s }} cluster
id: kind
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0
with:
version: v0.31.0
node_image: kindest/node:${{ matrix.k8s }}
- name: Prepare Host
run: |
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.22.0/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
- name: Run checks
run: |
echo "waiting for nodes to be ready ..."
kubectl wait --for=condition=Ready nodes --all --timeout=5m
kubectl get nodes
kubectl create -R -f ./crds
make ci
# Stub Build check to keep branch protection rules happy
build:
name: Build
runs-on: ubuntu-24.04
needs: k8s
steps:
- name: Build
run: |
exit 0