2018-08-27 10:15:01 +02:00
|
|
|
.PHONY: test format magneticod magneticow ensure test-magneticod test-magneticow test-persistence image image-magneticow image-magneticod
|
2018-08-07 09:31:26 +02:00
|
|
|
|
2018-08-27 10:15:01 +02:00
|
|
|
all: test magneticod magneticow
|
2017-11-03 00:15:13 +01:00
|
|
|
|
|
|
|
magneticod:
|
2018-12-25 16:38:13 +01:00
|
|
|
go install --tags fts5 "-ldflags=-s -w -X main.compiledOn=`date -u +%Y-%m-%dT%H:%M:%SZ`" github.com/boramalper/magnetico/cmd/magneticod
|
2017-11-03 00:15:13 +01:00
|
|
|
|
|
|
|
magneticow:
|
|
|
|
# TODO: minify files!
|
2018-12-25 16:38:13 +01:00
|
|
|
# https://github.com/kevinburke/go-bindata
|
2018-08-27 10:15:01 +02:00
|
|
|
go-bindata -o="cmd/magneticow/bindata.go" -prefix="cmd/magneticow/data/" cmd/magneticow/data/...
|
2018-12-25 16:38:13 +01:00
|
|
|
go install --tags fts5 "-ldflags=-s -w -X main.compiledOn=`date -u +%Y-%m-%dT%H:%M:%SZ`" github.com/boramalper/magnetico/cmd/magneticow
|
2018-08-03 14:40:04 +02:00
|
|
|
|
2018-08-27 10:15:01 +02:00
|
|
|
image-magneticod:
|
|
|
|
docker build -t magneticod -f Dockerfile.magneticod .
|
|
|
|
|
|
|
|
image-magneticow:
|
|
|
|
docker build -t magneticow -f Dockerfile.magneticow .
|
|
|
|
|
|
|
|
image: image-magneticod image-magneticow
|
|
|
|
|
|
|
|
# Download dependencies
|
|
|
|
ensure:
|
|
|
|
dep ensure -v
|
|
|
|
|
|
|
|
test-magneticod:
|
2018-08-03 14:40:04 +02:00
|
|
|
go test github.com/boramalper/magnetico/cmd/magneticod/...
|
2018-08-27 10:15:01 +02:00
|
|
|
|
|
|
|
test-magneticow:
|
2018-08-03 14:40:04 +02:00
|
|
|
go test github.com/boramalper/magnetico/cmd/magneticow/...
|
2018-08-27 10:15:01 +02:00
|
|
|
|
|
|
|
test-persistence:
|
2018-08-03 14:40:04 +02:00
|
|
|
go test github.com/boramalper/magnetico/pkg/persistence/...
|
|
|
|
|
2018-08-27 10:15:01 +02:00
|
|
|
test: test-persistence test-magneticod test-magneticow
|
|
|
|
|
2018-08-03 14:40:04 +02:00
|
|
|
format:
|
|
|
|
gofmt -w cmd/magneticod
|
|
|
|
gofmt -w cmd/magneticow
|
|
|
|
gofmt -w pkg/persistence
|
|
|
|
|