-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathMakefile
107 lines (92 loc) · 2.09 KB
/
Makefile
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
# File generated by cdo from docs/CONTRIBUTING.md; DO NOT EDIT.
SHELL=bash
.SHELLFLAGS=-e -o pipefail -c
.PHONY: __help__
__help__:
@echo 'Usage: make [target]'
@echo ''
@echo 'Targets:'
@echo ' all Clean build'
@echo ' build Build custom k6 with extension'
@echo ' clean Clean the working directory'
@echo ' coverage View the test coverage report'
@echo ' doc Update documentation'
@echo ' format Format the go source codes'
@echo ' it Run the integration tests'
@echo ' lint Run the linter'
@echo ' makefile Generate the Makefile'
@echo ' schema Contribute to the JSON schema'
@echo ' security Run security and vulnerability checks'
@echo ' test Run the tests'
# Clean build
.PHONY: all
all: clean format security lint test build it doc makefile
# Build custom k6 with extension
.PHONY: build
build:
@(\
goreleaser build --clean --snapshot --single-target --id xk6;\
)
# Clean the working directory
.PHONY: clean
clean:
@(\
rm -rf ./xk6 ./xk6.exe ./k6 ./k6.exe ./coverage.txt ./build ./dist;\
)
# View the test coverage report
.PHONY: coverage
coverage: test
@(\
go tool cover -html=coverage.txt;\
)
# Update documentation
.PHONY: doc
doc:
@(\
mdcode update docs/workflows/README.md;\
go run ./tools/docsme --heading 1 -o READMEea.md;\
)
# Format the go source codes
.PHONY: format
format:
@(\
go fmt ./...;\
)
# Run the integration tests
.PHONY: it
it:
@(\
bats -r .;\
)
# Run the linter
.PHONY: lint
lint:
@(\
golangci-lint run ./...;\
)
# Generate the Makefile
.PHONY: makefile
makefile:
@(\
cdo --makefile Makefile;\
)
# Contribute to the JSON schema
.PHONY: schema
schema:
@(\
yq -o=json -P docs/compliance.schema.yaml > docs/compliance.schema.json;\
go-jsonschema --capitalization ID -p lint --only-models -o internal/lint/compliance_gen.go docs/compliance.schema.yaml;\
)
# Run security and vulnerability checks
.PHONY: security
security:
@(\
gosec -quiet ./...;\
govulncheck ./...;\
)
# Run the tests
.PHONY: test
test:
@(\
go test -count 1 -race -coverprofile=coverage.txt -timeout 2m ./...;\
)