Add task to build on all PG versions

This commit is contained in:
Dan Sosedoff 2016-01-17 15:22:51 -06:00
parent 9bfaae7194
commit e3f5cab6dd

View File

@ -15,6 +15,7 @@ usage:
@echo "make bootstrap : Install cross-compilation toolchain"
@echo "make release : Generate binaries for all supported OSes"
@echo "make test : Execute test suite"
@echo "make test-all : Execute test suite on multiple PG versions"
@echo "make clean : Remove all build files and reset assets"
@echo "make assets : Generate production assets file"
@echo "make dev-assets : Generate development assets file"
@ -25,6 +26,9 @@ usage:
test:
godep go test -cover ./...
test-all:
@./script/test_all.sh
assets: static/
go-bindata -o pkg/data/bindata.go -pkg data $(BINDATA_OPTS) $(BINDATA_IGNORE) -ignore=[.]gitignore -ignore=[.]gitkeep $<...