Jan Dittberner
f0d456dd13
- add a client generated command ID for tracing commands and responses - define protocol delimiter in protocol.CobsDelimiter - apply code simplifications suggested by golangci-lint - add Makefile - add compile time build information for signer binary - make sure that dependencies for msgpackgen survive go mod tidy - extract MsgPackHandler into its own file - add CRL number to fetch CRL response - remove port.Flush() to avoid removing written data before it reaches the client
26 lines
No EOL
712 B
Makefile
26 lines
No EOL
712 B
Makefile
GOFILES := $(shell find -type f -name '*.go')
|
|
BUILD_TIME := $(shell date --rfc-3339=seconds)
|
|
COMMIT := $(shell git show-ref --head --abbrev=8 HEAD|cut -d ' ' -f 1)
|
|
VERSION := $(shell git describe --always --dirty)
|
|
|
|
all: pkg/messages/resolver.msgpackgen.go lint test clientsim signer
|
|
|
|
pkg/messages/resolver.msgpackgen.go: pkg/messages/messages.go
|
|
go generate $<
|
|
|
|
lint:
|
|
golangci-lint run
|
|
|
|
test:
|
|
go test -race ./...
|
|
|
|
clientsim: $(GOFILES)
|
|
go build -race ./cmd/clientsim
|
|
|
|
signer: $(GOFILES)
|
|
go build -race -ldflags="-X 'main.date=$(BUILD_TIME)' -X 'main.commit=$(COMMIT)' -X 'main.version=$(VERSION)'" ./cmd/signer
|
|
|
|
clean:
|
|
rm -f signer clientsim pkg/messages/resolver.msgpackgen.go
|
|
|
|
.PHONY: test lint all clean |