-
Notifications
You must be signed in to change notification settings - Fork 4
/
golang-ci.yaml
358 lines (326 loc) · 10.5 KB
/
golang-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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
---
variables:
- group: RuntimeVariables
parameters:
- name: GolangVersion
type: string
default: '1.16'
- name: ApplicationName
type: string
default: 'opstree-go-app'
- name: QuayImageName
type: string
default: 'opstree/opstree-go-app'
- name: GithubImageName
type: string
default: 'opstree/opstree-go-app'
- name: BuildDocs
type: boolean
default: false
stages:
- stage: precheck
jobs:
- job: gofmt
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: GoTool@0
displayName: "Installing Golang"
inputs:
version: '${{ parameters.GolangVersion }}'
- script: |
#!/bin/bash
gofmt_files=$(go fmt ./... | wc -l)
if [[ ${gofmt_files} > 0 ]]
then
echo "Please format golang files using:- go fmt ./..."
exit 1
else
echo "All files are formated using gofmt"
fi
displayName: "Executing gofmt"
- job: govet
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: GoTool@0
displayName: "Installing Golang"
inputs:
version: '${{ parameters.GolangVersion }}'
- task: Go@0
displayName: "Executing go vet"
inputs:
command: 'custom'
customCommand: 'vet'
- stage: code_quality
dependsOn: ["precheck"]
jobs:
- job: golang_ci_lint
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: GoTool@0
displayName: "Installing Golang"
inputs:
version: '${{ parameters.GolangVersion }}'
- script: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.40.0
./bin/golangci-lint run --timeout 5m0s ./...
displayName: "Executing golang-ci lint"
- stage: container_quality
dependsOn: ["precheck"]
jobs:
- job: dockerfile_lint
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- script: |
#!/bin/bash
download_hadolint() {
wget https://github.com/hadolint/hadolint/releases/download/v2.4.0/hadolint-Linux-x86_64
chmod +x hadolint-Linux-x86_64
}
execute_hadolint() {
./hadolint-Linux-x86_64 Dockerfile --ignore DL3007 --ignore DL3018
}
main() {
download_hadolint
execute_hadolint
}
main
displayName: "Executing dockerlinter"
- stage: build
dependsOn: ["code_quality"]
jobs:
- job: linux_amd64
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: GoTool@0
displayName: "Installing Golang"
inputs:
version: '${{ parameters.GolangVersion }}'
- task: Go@0
displayName: "Executing go build"
inputs:
command: 'build'
arguments: '-o $(Agent.BuildDirectory)/${{ parameters.ApplicationName }}'
- task: ArchiveFiles@2
displayName: 'Archiving go binary'
inputs:
rootFolderOrFile: '$(Agent.BuildDirectory)/${{ parameters.ApplicationName }}'
includeRootFolder: true
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/compiled/${{ parameters.ApplicationName }}-linux-amd64.zip'
replaceExistingArchive: true
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)/compiled'
ArtifactName: 'drop'
publishLocation: 'Container'
- stage: build_image
dependsOn: ["container_quality"]
jobs:
- job: linux_amd64
dependsOn: []
steps:
- task: Docker@2
displayName: "Building docker image"
inputs:
command: 'build'
Dockerfile: '**/Dockerfile'
tags: '$(Build.BuildId)'
repository: '${{ parameters.ApplicationName }}'
- script: |
mkdir -p $(Build.ArtifactStagingDirectory)/image
docker save -o $(Build.ArtifactStagingDirectory)/image/${{ parameters.ApplicationName }}.tar ${{ parameters.ApplicationName }}:$(Build.BuildId)
displayName: "Archiving docker image"
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)/image'
ArtifactName: 'dropcontainer'
publishLocation: 'Container'
- stage: code_security
dependsOn: ["build"]
jobs:
- job: gosec
dependsOn: []
steps:
- script: |
#!/bin/bash
install_gosec() {
curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s latest
}
execute_gosec() {
./bin/gosec -fmt=junit-xml -out=./bin/results.xml ./... || true
}
main() {
install_gosec
execute_gosec
}
main
displayName: "Execute gosec scan"
- task: PublishTestResults@2
displayName: "Publish test results"
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: './bin/results.xml'
failTaskOnFailedTests: false
testRunTitle: 'GoSec Test Result'
- stage: container_security
dependsOn: ["build_image"]
jobs:
- job: trivy_scan
dependsOn: []
steps:
- task: DownloadBuildArtifacts@0
displayName: "Downloading the image artifact"
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'dropcontainer'
downloadPath: '$(System.ArtifactsDirectory)'
- script: |
#!/bin/bash
install_trivy() {
sudo apt-get install wget apt-transport-https gnupg lsb-release -y
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add -
echo deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list.d/trivy.list
sudo apt-get update
sudo apt-get install trivy -y
}
execute_trivy() {
trivy image --input ${IMAGE_PATH}
}
main() {
install_trivy
execute_trivy
}
main
displayName: "Execute trivy scan"
env:
IMAGE_PATH: $(System.ArtifactsDirectory)/dropcontainer/${{ parameters.ApplicationName }}.tar
- stage: release_binaries
dependsOn: ["code_security"]
jobs:
- job: goreleaser
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- script: |
#!/bin/bash
install_goreleaser() {
curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
}
release() {
install_goreleaser
./bin/goreleaser release --rm-dist
}
compare_version() {
version=$(cat VERSION)
if ! git tag -l | grep "${version}"
then
git checkout master
echo "git tag ${version}"
git tag "${version}"
release
else
git tag -l
echo "Latest version is already updated"
fi
}
compare_version
displayName: "Releasing go binaries"
env:
GITHUB_TOKEN: $(GithubToken)
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- stage: release_quay
dependsOn: ["container_security", "code_security"]
jobs:
- job: quay
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: Docker@2
displayName: "Publish quay image"
inputs:
containerRegistry: 'QuayServiceConnection'
repository: '${{ parameters.QuayImageName }}'
command: 'buildAndPush'
Dockerfile: '**/Dockerfile'
tags: |
latest
$(Build.SourceBranchName)
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- stage: release_github_image
dependsOn: ["container_security", "code_security"]
jobs:
- job: github
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: Docker@2
displayName: "Publish github image"
inputs:
containerRegistry: 'GithubServiceConnection'
repository: '${{ parameters.GithubImageName }}'
command: 'buildAndPush'
Dockerfile: '**/Dockerfile'
tags: |
latest
$(Build.SourceBranchName)
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- stage: verify
dependsOn: ["release_binaries", "release_quay", "release_github_image"]
jobs:
- job: verfiy
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: DownloadBuildArtifacts@0
displayName: "Downloading the artifact"
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'drop'
downloadPath: '$(System.ArtifactsDirectory)'
- task: ExtractFiles@1
displayName: "Extracting files"
inputs:
archiveFilePatterns: '$(System.ArtifactsDirectory)/drop/${{ parameters.ApplicationName }}-linux-amd64.zip'
destinationFolder: '$(Agent.BuildDirectory)'
cleanDestinationFolder: false
overwriteExistingFiles: true
- script: |
$(Agent.BuildDirectory)/${{ parameters.ApplicationName }} --help || true
displayName: "Executing ${{ parameters.ApplicationName }}"
- stage: docs
dependsOn: ["verify"]
jobs:
- job: build
dependsOn: []
pool:
vmImage: "ubuntu-20.04"
steps:
- task: NodeTool@0
displayName: "Installing NodeJS"
inputs:
versionSpec: '>=8.6'
- script: |
build_docs() {
cd docs; yarn install && \
yarn add -D vuepress && \
yarn build
}
build_docs
displayName: "Building documentation"
condition: and(succeeded(), eq(${{ parameters.BuildDocs }}, true))