1
0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-09-19 08:22:55 +00:00
duplicity-backup/Makefile
Knut Ahlers 4f099ebe5f
Update build system / GH publish
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-08 15:16:12 +02:00

27 lines
609 B
Makefile

bindata:
go-bindata help.txt
ci: publish
publish:
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
bash golang.sh
setup-testenv:
go get github.com/onsi/ginkgo/ginkgo
go get github.com/onsi/gomega
go get github.com/alecthomas/gometalinter
gometalinter --install --update
test:
ginkgo
gometalinter \
--cyclo-over=15 \
--deadline=20s \
--exclude=bindata.go \
--exclude=configfile_test.go \
-D errcheck
install:
go install -a -ldflags "-X main.version=$(shell git describe --tags || git rev-parse --short HEAD || echo dev)"