forked from asecurityteam/cisco-ise-log-parser-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (33 loc) · 877 Bytes
/
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
TAG := $(shell git rev-parse --short HEAD)
DIR := $(shell pwd -L)
dep:
docker run -ti \
--mount src="$(DIR)",target="$(DIR)",type="bind" \
-w "$(DIR)" \
asecurityteam/sdcli:v1 go dep
lint:
docker run -ti \
--mount src="$(DIR)",target="$(DIR)",type="bind" \
-w "$(DIR)" \
asecurityteam/sdcli:v1 go lint
test:
docker run -ti \
--mount src="$(DIR)",target="$(DIR)",type="bind" \
-w "$(DIR)" \
asecurityteam/sdcli:v1 go test
integration:
docker run -ti \
--mount src="$(DIR)",target="$(DIR)",type="bind" \
-w "$(DIR)" \
asecurityteam/sdcli:v1 go integration
coverage:
docker run -ti \
--mount src="$(DIR)",target="$(DIR)",type="bind" \
-w "$(DIR)" \
asecurityteam/sdcli:v1 go coverage
doc: ;
build-dev: ;
build: ;
run: ;
deploy-dev: ;
deploy: ;