-
Notifications
You must be signed in to change notification settings - Fork 36
58 lines (52 loc) · 1.31 KB
/
e2e-operator.yml
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
on:
push:
tags:
- v*
branches:
- master
paths:
- "**.go"
- "Makefile"
- "**.yaml"
- "**.yml"
- "test/**"
pull_request:
paths:
- "**.go"
- "Makefile"
- "**.yaml"
- "**.yml"
- "test/**"
name: Operator E2E Test
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
path: |
~/go/pkg/mod
~/.cache/go-build
.bin
key: cache-${{ hashFiles('**/go.sum') }}-${{ hashFiles('.bin/*') }}
restore-keys: |
cache-
- run: make bin
- name: Set up Kind & Kubectl
uses: helm/[email protected]
with:
version: v0.21.0
cluster_name: kind-test
- name: Wait for cluster to be ready
run: |
kubectl wait --for=condition=Ready nodes --all --timeout=300s
- name: Test
run: ./test/e2e-operator.sh