jx/Makefile
Matthew Rich 48402ae6f9
Some checks failed
Lint / golangci-lint (push) Successful in 9m45s
Declarative Tests / test (push) Successful in 23s
Declarative Tests / build (push) Failing after 59s
download source tar
2024-05-26 18:52:14 -07:00

20 lines
705 B
Makefile

LDFLAGS?=--ldflags '-extldflags "-static"' --ldflags="-X 'main.commit=$(shell git rev-parse HEAD)' -X 'main.version=$(shell git describe --tags)' -X 'main.date=$(shell date '+%Y-%m-%d %T.%s%z')'"
export CGO_ENABLED=1
VERSION?=$(shell git describe --tags | sed -e 's/^v//' -e 's/-/_/g')
.PHONY=jx-cli
build: jx-cli
jx-cli:
go build -o jx $(LDFLAGS) ./cmd/cli/main.go
test: jx-cli
go test -coverprofile=artifacts/coverage.profile ./...
go tool cover -html=artifacts/coverage.profile -o artifacts/code-coverage.html
rpm:
echo Building $(VERSION)
dnf install -y nodejs git dnf-plugins-core rpm-build rpmdevtools
spectool -g -R build/js.spec
rpmbuild -ba --define='version $(VERSION)' build/jx.spec