435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
45 lines
998 B
Makefile
45 lines
998 B
Makefile
|
|
CMD = jpgo
|
|
|
|
help:
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
@echo " test to run all the tests"
|
|
@echo " build to build the library and jp executable"
|
|
@echo " generate to run codegen"
|
|
|
|
|
|
generate:
|
|
go generate ./...
|
|
|
|
build:
|
|
rm -f $(CMD)
|
|
go build ./...
|
|
rm -f cmd/$(CMD)/$(CMD) && cd cmd/$(CMD)/ && go build ./...
|
|
mv cmd/$(CMD)/$(CMD) .
|
|
|
|
test:
|
|
go test -v ./...
|
|
|
|
check:
|
|
go vet ./...
|
|
@echo "golint ./..."
|
|
@lint=`golint ./...`; \
|
|
lint=`echo "$$lint" | grep -v "astnodetype_string.go" | grep -v "toktype_string.go"`; \
|
|
echo "$$lint"; \
|
|
if [ "$$lint" != "" ]; then exit 1; fi
|
|
|
|
htmlc:
|
|
go test -coverprofile="/tmp/jpcov" && go tool cover -html="/tmp/jpcov" && unlink /tmp/jpcov
|
|
|
|
buildfuzz:
|
|
go-fuzz-build github.com/jmespath/go-jmespath/fuzz
|
|
|
|
fuzz: buildfuzz
|
|
go-fuzz -bin=./jmespath-fuzz.zip -workdir=fuzz/testdata
|
|
|
|
bench:
|
|
go test -bench . -cpuprofile cpu.out
|
|
|
|
pprof-cpu:
|
|
go tool pprof ./go-jmespath.test ./cpu.out
|