navidrome/Makefile

83 lines
3.1 KiB
Makefile
Raw Normal View History

GO_VERSION=$(shell grep -e "^go " go.mod | cut -f 2 -d ' ')
NODE_VERSION=$(shell cat .nvmrc)
2020-01-26 18:36:24 +01:00
GIT_SHA=$(shell git rev-parse --short HEAD)
2020-01-25 17:06:04 +01:00
2020-01-20 04:48:36 +01:00
.PHONY: dev
dev: check_env
2020-01-20 04:48:36 +01:00
@goreman -f Procfile.dev -b 4533 start
.PHONY: server
server: check_go_env
@reflex -d none -c reflex.conf
.PHONY: watch
watch: check_go_env
ginkgo watch -notify ./...
.PHONY: test
test: check_go_env
go test ./... -v
2020-01-18 01:36:50 +01:00
# @(cd ./ui && npm test -- --watchAll=false)
2020-01-20 01:34:54 +01:00
.PHONY: testall
testall: check_go_env test
@(cd ./ui && npm test -- --watchAll=false)
2016-10-11 02:27:09 +02:00
.PHONY: setup
setup: Jamstash-master
2020-01-23 00:35:44 +01:00
@which goconvey || (echo "Installing GoConvey" && GO111MODULE=off go get -u github.com/smartystreets/goconvey)
@which wire || (echo "Installing Wire" && GO111MODULE=off go get -u github.com/google/wire/cmd/wire)
@which go-bindata || (echo "Installing BinData" && GO111MODULE=off go get -u github.com/go-bindata/go-bindata/...)
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
2020-01-23 00:35:44 +01:00
@which goreman || (echo "Installing Goreman" && GO111MODULE=off go get -u github.com/mattn/goreman)
@which ginkgo || (echo "Installing Ginkgo" && GO111MODULE=off go get -u github.com/onsi/ginkgo/ginkgo)
@which goose || (echo "Installing Goose" && GO111MODULE=off go get -u github.com/pressly/goose/cmd/goose)
go mod download
@(cd ./ui && npm ci)
2016-10-11 02:27:09 +02:00
.PHONY: static
static:
cd static && go-bindata -fs -prefix "static" -nocompress -ignore="\\\*.go" -pkg static .
Jamstash-master:
wget -N https://github.com/tsquillario/Jamstash/archive/master.zip
unzip -o master.zip
rm master.zip
2016-10-11 02:27:09 +02:00
.PHONE: check_env
check_env: check_go_env check_node_env
2016-10-11 02:27:09 +02:00
.PHONY: check_go_env
check_go_env:
2020-01-26 21:32:55 +01:00
@(hash go) || (echo "\nERROR: GO environment not setup properly!\n"; exit 1)
2020-02-26 15:37:48 +01:00
@go version | grep -q $(GO_VERSION) || (echo "\nERROR: Please upgrade your GO version\nThis project requires version $(GO_VERSION)"; exit 1)
2016-10-11 02:27:09 +02:00
.PHONY: check_node_env
check_node_env:
@(hash node) || (echo "\nERROR: Node environment not setup properly!\n"; exit 1)
@node --version | grep -q $(NODE_VERSION) || (echo "\nERROR: Please check your Node version. Should be $(NODE_VERSION)\n"; exit 1)
2020-01-08 17:13:05 +01:00
2020-01-25 17:06:04 +01:00
.PHONY: build
build: check_go_env
go build -ldflags="-X github.com/deluan/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/deluan/navidrome/consts.gitTag=master"
2020-01-25 17:06:04 +01:00
2020-01-23 00:35:44 +01:00
.PHONY: buildall
2020-02-04 21:02:43 +01:00
buildall: check_env
@(cd ./ui && npm run build)
go-bindata -fs -prefix "ui/build" -tags embed -nocompress -pkg assets -o assets/embedded_gen.go ui/build/...
go build -ldflags="-X github.com/deluan/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/deluan/navidrome/consts.gitTag=master" -tags=embed
.PHONY: release
release:
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
go mod tidy
@if [ -n "`git status -s`" ]; then echo "\n\nThere are pending changes. Please commit or stash first"; exit 1; fi
make test
git tag v${V}
git push origin v${V}
.PHONY: dist
dist:
2020-02-26 15:37:48 +01:00
docker run -it -v $(PWD):/github/workspace -w /github/workspace bepsays/ci-goreleaser:1.14-1 goreleaser release --rm-dist --skip-publish --snapshot