navidrome/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
3.2 KiB
Makefile
Raw Normal View History

GO_VERSION=$(shell grep "^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)
GIT_TAG=$(shell git describe --tags `git rev-list --tags --max-count=1`)
2020-01-25 17:06:04 +01:00
## Default target just build the Go project.
default:
go build -ldflags="-X github.com/deluan/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/deluan/navidrome/consts.gitTag=master"
.PHONY: default
dev: check_env
2020-04-29 05:24:57 +02:00
npx foreman -j Procfile.dev -p 4533 start
.PHONY: dev
2020-01-20 04:48:36 +01:00
server: check_go_env
@reflex -d none -c reflex.conf
.PHONY: server
2020-04-05 04:23:20 +02:00
wire: check_go_env
wire ./...
.PHONY: wire
watch: check_go_env
ginkgo watch -notify ./...
.PHONY: watch
test: check_go_env
go test ./... -v
.PHONY: test
2020-01-20 01:34:54 +01:00
testall: check_go_env test
@(cd ./ui && npm test -- --watchAll=false)
.PHONY: testall
2020-01-20 01:34:54 +01:00
update-snapshots: check_go_env
UPDATE_SNAPSHOTS=true ginkgo ./server/subsonic/...
.PHONY: update-snapshots
migration:
2020-08-19 17:18:30 +02:00
@if [ -z "${name}" ]; then echo "Usage: make migration name=name_of_migration_file"; exit 1; fi
goose -dir db/migration create ${name}
.PHONY: migration
2020-10-03 17:01:16 +02:00
setup: download-deps
@echo Installing tools from tools.go
@cat tools.go | grep _ | awk -F'"' '{print $$2}' | xargs -tI % go install %
.PHONY: setup
2020-10-03 17:01:16 +02:00
download-deps:
@echo Download Go dependencies
@go mod download
@echo Download Node dependencies
@(cd ./ui && npm ci)
.PHONY: download-deps
2020-07-16 23:52:59 +02:00
setup-dev: setup setup-git
2020-07-16 22:57:19 +02:00
.PHONY: setup-dev
2016-10-11 02:27:09 +02:00
2020-07-16 23:52:59 +02:00
setup-git:
2020-10-03 17:01:16 +02:00
@echo Setting up git hooks
2020-07-16 23:52:59 +02:00
@mkdir -p .git/hooks
2020-10-03 17:01:16 +02:00
@(cd .git/hooks && ln -sf ../../git/* .)
2020-07-16 23:52:59 +02:00
.PHONY: setup-git
check_env: check_go_env check_node_env
2020-06-05 02:13:25 +02:00
.PHONY: check_env
2016-10-11 02:27:09 +02:00
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)
.PHONY: check_go_env
2016-10-11 02:27:09 +02:00
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)
.PHONY: check_node_env
2020-01-08 17:13:05 +01:00
2020-01-25 17:06:04 +01:00
build: check_go_env
go build -ldflags="-X github.com/deluan/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/deluan/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT"
.PHONY: build
2020-01-25 17:06:04 +01:00
2020-02-04 21:02:43 +01:00
buildall: check_env
@(cd ./ui && npm run build)
go-bindata -fs -prefix "resources" -tags embed -ignore="\\\*.go" -pkg resources -o resources/embedded_gen.go resources/...
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=$(GIT_TAG)-SNAPSHOT" -tags=embed
.PHONY: buildall
pre-push:
golangci-lint run -v
@echo
make test
.PHONY: pre-push
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 pre-push
git tag v${V}
git push origin v${V} --no-verify
.PHONY: release
2020-04-04 20:36:23 +02:00
snapshot:
2020-10-01 03:03:38 +02:00
docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.2-1 goreleaser release --rm-dist --skip-publish --snapshot
2020-04-04 20:36:23 +02:00
.PHONY: snapshot