mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Converted pre-push hook into a make target, avoid calling tests twice when releasing
This commit is contained in:
parent
27adb84177
commit
a99924ea20
2 changed files with 10 additions and 8 deletions
11
Makefile
11
Makefile
|
@ -86,13 +86,20 @@ buildall: check_env
|
||||||
go build -ldflags="-X github.com/deluan/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/deluan/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=embed
|
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
|
.PHONY: buildall
|
||||||
|
|
||||||
|
pre-push:
|
||||||
|
golangci-lint run -v
|
||||||
|
|
||||||
|
@echo
|
||||||
|
make test
|
||||||
|
.PHONY: pre-push
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
|
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
|
||||||
go mod tidy
|
go mod tidy
|
||||||
@if [ -n "`git status -s`" ]; then echo "\n\nThere are pending changes. Please commit or stash first"; exit 1; fi
|
@if [ -n "`git status -s`" ]; then echo "\n\nThere are pending changes. Please commit or stash first"; exit 1; fi
|
||||||
make test
|
make pre-push
|
||||||
git tag v${V}
|
git tag v${V}
|
||||||
git push origin v${V}
|
git push origin v${V} --no-verify
|
||||||
.PHONY: release
|
.PHONY: release
|
||||||
|
|
||||||
snapshot:
|
snapshot:
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo "#### Linting"
|
make pre-push
|
||||||
golangci-lint run -v
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "#### Running tests"
|
|
||||||
make test
|
|
Loading…
Add table
Add a link
Reference in a new issue