This commit updates to images v0.117.0 so that the cross-distro.sh test works again (images removed fedora-39.json in main but the uses the previous version of images that includes fedora-39 so there is a mismatch (we should look into if there is a way to get github.com/osbuild/images@latest instead of main in the cross-arch test). It also updates all the vendor stuff that got pulled via the new images release (which is giantonormous). This update requires updating the Go version to 1.22.8
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
|
|
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: build
|
|
go test -v ${SRC_PKGS}
|
|
|
|
check:
|
|
go vet ${SRC_PKGS}
|
|
golint ${SRC_PKGS}
|
|
golangci-lint run
|
|
|
|
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
|
|
|
|
install-dev-cmds:
|
|
go install golang.org/x/lint/golint@latest
|
|
go install golang.org/x/tools/cmd/stringer@latest
|
|
command -v golangci-lint || { curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v1.46.2; }
|