mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
Rudimentary Makefile specifying requirements for a release
This commit is contained in:
parent
45670a7e5d
commit
775bc5caf6
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
|||||||
|
# Build
|
||||||
|
artifacts/
|
||||||
|
|
||||||
# Golang
|
# Golang
|
||||||
vendor/
|
vendor/
|
||||||
|
|
||||||
|
47
Makefile
Normal file
47
Makefile
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
.PHONY: generate build test vet cover release clean
|
||||||
|
|
||||||
|
ROOT := github.com/zrepl/zrepl
|
||||||
|
SUBPKGS := cmd logger rpc sshbytestream util
|
||||||
|
|
||||||
|
_TESTPKGS := $(ROOT) $(foreach p,$(SUBPKGS),$(ROOT)/$(p))
|
||||||
|
|
||||||
|
ARTIFACTDIR := artifacts
|
||||||
|
|
||||||
|
build: generate
|
||||||
|
go build -o $(ARTIFACTDIR)/zrepl
|
||||||
|
|
||||||
|
generate:
|
||||||
|
@for pkg in $(_TESTPKGS); do\
|
||||||
|
go generate "$$pkg" || exit 1; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
test:
|
||||||
|
@for pkg in $(_TESTPKGS); do \
|
||||||
|
echo "Testing $$pkg"; \
|
||||||
|
go test "$$pkg" || exit 1; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
vet:
|
||||||
|
@for pkg in $(_TESTPKGS); do \
|
||||||
|
echo "Vetting $$pkg"; \
|
||||||
|
go vet "$$pkg" || exit 1; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
cover: artifacts
|
||||||
|
@for pkg in $(_TESTPKGS); do \
|
||||||
|
profile="$(ARTIFACTDIR)/cover-$$(basename $$pkg).out"; \
|
||||||
|
go test -coverprofile "$$profile" $$pkg || exit 1; \
|
||||||
|
if [ -f "$$profile" ]; then \
|
||||||
|
go tool cover -html="$$profile" -o "$${profile}.html" || exit 2; \
|
||||||
|
fi; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
mkdir artifacts
|
||||||
|
|
||||||
|
release: generate artifacts vet test
|
||||||
|
GOOS=linux GOARCH=amd64 go build -o "$(ARTIFACTDIR)/zrepl-linux-amd64"
|
||||||
|
GOOS=freebsd GOARCH=amd64 go build -o "$(ARTIFACTDIR)/zrepl-freebsd-amd64"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf "$(ARTIFACTDIR)"
|
Loading…
Reference in New Issue
Block a user