Sha256: 71f1fe5d894ee809158a3cec9e633df5c74efc4230ea41f1822fc34f0bb47f60

Contents?: true

Size: 1.16 KB

Versions: 16

Compression:

Stored size: 1.16 KB

Contents

CMD = jpgo

SRC_PKGS=./ ./cmd/... ./fuzz/...

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 ${SRC_PKGS}

build:
	rm -f $(CMD)
	go build ${SRC_PKGS}
	rm -f cmd/$(CMD)/$(CMD) && cd cmd/$(CMD)/ && go build ./...
	mv cmd/$(CMD)/$(CMD) .

test: test-internal-testify
	echo "making tests ${SRC_PKGS}"
	go test -v ${SRC_PKGS}

check:
	go vet ${SRC_PKGS}
	@echo "golint ${SRC_PKGS}"
	@lint=`golint ${SRC_PKGS}`; \
	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

test-internal-testify:
	cd internal/testify && go test ./...

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ruby_snowflake_client-1.3.7 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.6 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.5 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.4 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.4.pre.debug ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.3.pre.debug ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.2 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.1 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.3.0 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.2.1 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.2.0 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.1.1 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.1.0 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.0.2 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.0.1 ext/vendor/github.com/jmespath/go-jmespath/Makefile
ruby_snowflake_client-1.0.0 ext/vendor/github.com/jmespath/go-jmespath/Makefile