forked from tbckr/sgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
281 lines (250 loc) · 7.55 KB
/
Taskfile.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
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
# Copyright (c) 2023 Tim <tbckr>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# SPDX-License-Identifier: MIT
# https://taskfile.dev
version: '3'
env:
GO111MODULE: on
GOPROXY: https://proxy.golang.org,direct
GOSUMDB: sum.golang.org
vars:
DOCKER: '{{default "docker" .DOCKER}}'
tasks:
setup:precommit:
desc: Setup git hooks
preconditions:
- which python3
cmds:
- python3 -m pip install --upgrade --user pre-commit
- pre-commit install
setup:go-tools:
desc: Install tools
preconditions:
- which go
cmds:
- go install github.com/google/addlicense@latest
- go install github.com/caarlos0/svu@latest
- go install golang.org/x/vuln/cmd/govulncheck@latest
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
setup:docs:
desc: Install pipenv
preconditions:
- which python3
cmds:
- python3 -m pip install --upgrade --user pipenv
setup:
desc: Setup development environment
cmds:
- task: setup:precommit
- task: setup:go-tools
- task: setup:docs
validate:devtools:
desc: Validate that all necessary devtools are installed
cmds:
- which go 1>/dev/null || (echo "go is not installed" && exit 1)
- which python3 1>/dev/null || (echo "python3 is not installed" && exit 1)
- which pipenv 1>/dev/null || (echo "python3 is not installed" && exit 1)
- which docker 1>/dev/null || (echo "docker is not installed" && exit 1)
- which task 1>/dev/null || (echo "task is not installed" && exit 1)
- which pre-commit 1>/dev/null || (echo "pre-commit is not installed" && exit 1)
- which addlicense 1>/dev/null || (echo "addlicense is not installed" && exit 1)
- which svu 1>/dev/null || (echo "svu is not installed" && exit 1)
- which goreleaser 1>/dev/null || (echo "goreleaser is not installed" && exit 1)
docs:requirements:
desc: Create requirements.txt
cmds:
- pipenv requirements > docs/requirements.txt
docs:
desc: Serve documentation locally
cmds:
- pipenv sync
- pipenv run mkdocs serve
license-header:
desc: Add license header to all files
cmds:
- |
addlicense -c "Tim <tbckr>" -l MIT -s -v \
-ignore "dist/**" \
-ignore ".idea/**" \
-ignore ".task/**" \
-ignore ".github/licenses.tmpl" \
-ignore "licenses/*" \
-ignore "venv/*" \
.
clean:
desc: Clean up
cmds:
- rm -rf dist/
- rm -rf coverage.txt
- rm -rf sgpt
prepare:
desc: Install dependencies
cmds:
- go mod tidy
build:
desc: Build the binary
sources:
- ./**/*.go
generates:
- ./sgpt
cmds:
- go build -o sgpt cmd/sgpt/main.go
test:
desc: Run tests
env:
LC_ALL: C
vars:
TEST_OPTIONS: '{{default "" .TEST_OPTIONS}}'
SOURCE_FILES: '{{default "./..." .SOURCE_FILES}}'
TEST_PATTERN: '{{default "." .TEST_PATTERN}}'
cmds:
- go test {{.TEST_OPTIONS}} -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt {{.SOURCE_FILES}} -run {{.TEST_PATTERN}} -timeout=5m
cover:
desc: Open the cover tool
cmds:
- go tool cover -html=coverage.txt
fmt:
desc: gofumpt all code
cmds:
- gofumpt -w -l .
lint:go:
desc: Lint the code with golangci-lint
cmds:
- golangci-lint run ./...
ci:
desc: Run all CI steps
cmds:
- task: setup
- task: build
- task: test
default:
desc: Runs the default tasks
cmds:
- task: ci
docker:build:base:
desc: Build a docker image
internal: true
cmds:
- "{{.DOCKER}} build --pull --platform {{.OS}}/{{.Platform}} --build-arg TARGETOS={{.OS}} --build-arg TARGETARCH={{.Platform}}{{with .Variant}} --build-arg TARGETVARIANT={{.}}{{end}} -t sgpt:latest ."
docker:build:linux-amd64:
desc: Build the linux/amd64 docker image
cmds:
- task: docker:build:base
vars:
OS: 'linux'
Platform: 'amd64'
docker:build:
desc: Build docker image
cmds:
- task: docker:build:linux-amd64
release:
desc: Create a new tag
vars:
NEXT:
sh: svu n
cmds:
- task: set:version
vars:
VERSION: '{{.NEXT}}'
- git tag {{.NEXT}}
- git push --tags
set:version:
desc: Set the release version in the code
internal: true
cmds:
- sed -i 's/\(version\s*=\s*\)".*"/\1"'"{{.VERSION}}"'"/' internal/buildinfo/version.go
- git add internal/buildinfo/version.go
- "git commit -m \"chore: Bump version to {{.VERSION}}\""
sgpt:test:pkg:
desc: Test a package
internal: true
cmds:
- "docker run --platform linux/{{.Platform}} --rm --workdir /tmp -v $PWD/dist:/tmp {{.Image}} sh -c '{{.Cmd}} && sgpt version'"
sgpt:test:rpm:
desc: Tests rpm packages
vars:
rpm: 'rpm --nodeps -ivh'
cmds:
- task: sgpt:test:pkg
vars:
Platform: '386'
Image: centos:centos7
Cmd: '{{.rpm}} sgpt-*.i386.rpm'
- task: sgpt:test:pkg
vars:
Platform: 'amd64'
Image: fedora
Cmd: '{{.rpm}} sgpt-*.x86_64.rpm'
- task: sgpt:test:pkg
vars:
Platform: 'arm64'
Image: fedora
Cmd: '{{.rpm}} sgpt-*.aarch64.rpm'
sgpt:test:deb:
desc: Tests deb packages
vars:
dpkg: 'dpkg -i'
cmds:
- task: sgpt:test:pkg
vars:
Platform: 'amd64'
Image: ubuntu
Cmd: '{{.dpkg}} sgpt*_amd64.deb'
- task: sgpt:test:pkg
vars:
Platform: 'arm64'
Image: ubuntu
Cmd: '{{.dpkg}} sgpt*_arm64.deb'
- task: sgpt:test:pkg
vars:
Platform: 'arm/7'
Image: ubuntu
Cmd: '{{.dpkg}} sgpt*_armhf.deb'
sgpt:test:apk:
desc: Tests apk packages
vars:
apk: 'apk add --allow-untrusted -U'
cmds:
- task: sgpt:test:pkg
vars:
Platform: '386'
Image: alpine
Cmd: '{{.apk}} sgpt*_x86.apk'
- task: sgpt:test:pkg
vars:
Platform: 'amd64'
Image: alpine
Cmd: '{{.apk}} sgpt*_x86_64.apk'
- task: sgpt:test:pkg
vars:
Platform: 'arm64'
Image: alpine
Cmd: '{{.apk}} sgpt*_aarch64.apk'
- task: sgpt:test:pkg
vars:
Platform: 'arm/7'
Image: alpine
Cmd: '{{.apk}} sgpt*_armv7.apk'
sgpt:test:
desc: Test built linux packages
cmds:
- task: sgpt:test:apk
- task: sgpt:test:deb
- task: sgpt:test:rpm