forked from brocaar/chirpstack-network-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
47 lines (38 loc) · 1.1 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.PHONY: build clean test package serve update-vendor
PKGS := $(shell go list ./... | grep -v /vendor/)
VERSION := $(shell git describe --always)
GOOS ?= linux
GOARCH ?= amd64
build:
@echo "Compiling source for $(GOOS) $(GOARCH)"
@mkdir -p build
@GOOS=$(GOOS) GOARCH=$(GOARCH) go build -ldflags "-X main.version=$(VERSION)" -o build/loraserver$(BINEXT) cmd/loraserver/main.go
clean:
@echo "Cleaning up workspace"
@rm -rf build
@rm -rf dist/$(VERSION)
test:
@echo "Running tests"
@for pkg in $(PKGS) ; do \
golint $$pkg ; \
done
@go vet $(PKGS)
@go test -p 1 -cover -v $(PKGS)
package: clean build
@echo "Creating package for $(GOOS) $(GOARCH)"
@mkdir -p dist/$(VERSION)
@cp build/* dist/$(VERSION)
@cd dist/$(VERSION) && tar -pczf ../loraserver_$(VERSION)_$(GOOS)_$(GOARCH).tar.gz .
@rm -rf dist/$(VERSION)
generate:
@echo "Running go generate"
@go generate ./...
# shortcuts for development
serve: build
@echo "Starting Lora Server"
./build/loraserver
update-vendor:
@echo "Updating vendored packages"
@govendor update +external
run-compose-test:
docker-compose run --rm loraserver make test