From e3f5cab6ddee1a25c729e3bedbf1c63857bac1ad Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sun, 17 Jan 2016 15:22:51 -0600 Subject: [PATCH] Add task to build on all PG versions --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index d7f8658..a98f64e 100644 --- a/Makefile +++ b/Makefile @@ -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 $<...