forked from goharbor/harbor-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
180 lines (161 loc) · 4.43 KB
/
tests.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
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
173
174
175
176
177
178
179
180
name: Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- release-*
- feature/*
jobs:
# Dockerfile tests
docker-build-test:
runs-on: ubuntu-latest
name: Build docker image
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: |
docker buildx create --use
make docker-build
docker-lint:
runs-on: ubuntu-latest
name: 'dockerfile: lint'
steps:
- uses: actions/checkout@v2
- run: make docker-lint
# Golang tests
go-lint:
runs-on: ubuntu-latest
name: 'golang: lint'
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: make go-lint
go-dependencies:
runs-on: ubuntu-latest
name: Dependencies are up to date
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: make go-dependencies-test
check-generated-files:
runs-on: ubuntu-latest
name: Generated files are up to date
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: make generated-diff-test
go-tests:
runs-on: ubuntu-latest
name: Go tests
env:
USE_EXISTING_CLUSTER: true
IMAGE_SOURCE_REPOSITORY: ghcr.io/goharbor
dockerImage: harbor-operator:dev_test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Cache go mod
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Prepare memory storage for etcd of kind cluster
run: |
# Use memory storage for etcd of the kind cluster, see https://github.com/kubernetes-sigs/kind/issues/845 for more info
mkdir -p /tmp/lib/etcd
sudo mount -t tmpfs tmpfs /tmp/lib/etcd
- name: Install Kubernetes
uses: helm/[email protected]
with:
version: v0.14.0
cluster_name: harbor
node_image: kindest/node:v1.22.9
config: .github/kind.yaml
- name: Install CertManager
run: |
# Try the recet way to install crd or fallback to the old one
kubectl apply -f "https://github.com/jetstack/cert-manager/releases/download/v1.7.3/cert-manager.yaml"
sleep 5
time kubectl -n cert-manager wait --for=condition=Available deployment --all --timeout 300s
- name: go tests
run: |
GO_TEST_OPTS='-p 1 -vet=off' make go-test
- name: fetch logs
if: ${{ failure() }}
run: |
mkdir -p /tmp/logs
kind export logs --name harbor /tmp/logs
ls -l /tmp/logs
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: kind_go-tests
path: /tmp/logs
# Kubernetes
crd-kubernetes-resources:
runs-on: ubuntu-latest
name: 'kubernetes_resources: ./config/crd'
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: make manifests
- uses: azure/k8s-bake@v1
with:
renderEngine: 'kustomize'
kustomizationPath: './config/crd'
kubectl-version: 'latest'
operator-kubernetes-resources:
runs-on: ubuntu-latest
name: 'kubernetes_resources: ./config/rbac'
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- run: make manifests
- uses: azure/k8s-bake@v1
with:
renderEngine: 'kustomize'
kustomizationPath: './config/rbac'
kubectl-version: 'latest'
kubernetes-resources:
runs-on: ubuntu-latest
name: 'kubernetes_resources: ./config/samples/${{ matrix.path }}'
strategy:
fail-fast: false
matrix:
path:
- harborcluster-minimal
- harborcluster-standard
- harborcluster-fullstack
steps:
- uses: actions/checkout@v2
- uses: azure/k8s-bake@v1
with:
renderEngine: 'kustomize'
kustomizationPath: './config/samples/${{ matrix.path }}'
kubectl-version: 'latest'
# Documentation
md-lint:
runs-on: ubuntu-latest
name: 'documentation: lint'
steps:
- uses: actions/checkout@v2
- run: make md-lint