-
Notifications
You must be signed in to change notification settings - Fork 57
/
Makefile
98 lines (84 loc) · 1.72 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
# File generated by cdo from 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 ' example Run the example'
@echo ' format Format the go source codes'
@echo ' lint Run the linter'
@echo ' makefile Generate the Makefile'
@echo ' readme Update README.md'
@echo ' test Run the tests'
@echo ' tools Install the required tools'
# Clean build
.PHONY: all
all: clean format test build
# Build custom k6 with extension
.PHONY: build
build:
@(\
xk6 build --with github.com/grafana/xk6-sql=. --with github.com/grafana/xk6-sql-driver-ramsql;\
)
# Clean the working directory
.PHONY: clean
clean:
@(\
rm -f ./k6;\
)
# View the test coverage report
.PHONY: coverage
coverage: test
@(\
go tool cover -html=coverage.out;\
)
# Run the example
.PHONY: example
example:
@(\
./k6 run examples/example.js > examples/example.txt 2>&1;\
)
# Format the go source codes
.PHONY: format
format:
@(\
go fmt ./...;\
)
# Run the linter
.PHONY: lint
lint:
@(\
golangci-lint run;\
)
# Generate the Makefile
.PHONY: makefile
makefile:
@(\
cdo --makefile Makefile;\
)
# Update README.md
.PHONY: readme
readme:
@(\
mdcode update;\
)
# Run the tests
.PHONY: test
test:
@(\
go test -count 1 -race -coverprofile=coverage.out -timeout 60s ./...;\
)
# Install the required tools
.PHONY: tools
tools:
@(\
eget szkiba/mdcode;\
eget -t 1.57.2 golangci/golangci-lint;\
go install go.k6.io/xk6/cmd/xk6@latest;\
)