-
Notifications
You must be signed in to change notification settings - Fork 107
149 lines (134 loc) · 3.56 KB
/
build.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
name: "Build"
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
pull-requests: read
env:
GO_VERSION: 1.23
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Setup Environment
run: make ci-build-setup
- name: Build
run: make build
test:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Setup Environment
run: make ci-build-setup
- name: Run unit tests
run: make test
- name: Archive code coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: test-code-coverage-report
path: build/test-coverage.html
testacc:
strategy:
matrix:
k3s_version:
- v1.31.2-k3s1
- v1.30.6-k3s1
- v1.29.10-k3s1
- v1.28.15-k3s1
- v1.27.16-k3s1
- v1.26.15-k3s1
- v1.25.16-k3s4
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Setup Environment
run: make ci-build-setup
- name: Start k3s
run: make k3s-start
env:
K3S_VERSION: ${{ matrix.k3s_version }}
- name: Run acceptance tests
run: make testacc
- name: Stop k3s
run: make k3s-stop
- name: Archive code coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: testacc-${{matrix.k3s_version}}-code-coverage-report
path: build/testacc-coverage.html
fmtcheck:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Setup Environment
run: make ci-build-setup
- name: Format check
run: make fmtcheck
vet:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Setup Environment
run: make ci-build-setup
- name: Run vet
run: make vet
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up GO ${{env.GO_VERSION}}.x
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60