mirror of
https://github.com/sosedoff/pgweb.git
synced 2025-01-06 01:27:41 +03:00
Add task to build on all PG versions
This commit is contained in:
parent
9bfaae7194
commit
e3f5cab6dd
4
Makefile
4
Makefile
@ -15,6 +15,7 @@ usage:
|
|||||||
@echo "make bootstrap : Install cross-compilation toolchain"
|
@echo "make bootstrap : Install cross-compilation toolchain"
|
||||||
@echo "make release : Generate binaries for all supported OSes"
|
@echo "make release : Generate binaries for all supported OSes"
|
||||||
@echo "make test : Execute test suite"
|
@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 clean : Remove all build files and reset assets"
|
||||||
@echo "make assets : Generate production assets file"
|
@echo "make assets : Generate production assets file"
|
||||||
@echo "make dev-assets : Generate development assets file"
|
@echo "make dev-assets : Generate development assets file"
|
||||||
@ -25,6 +26,9 @@ usage:
|
|||||||
test:
|
test:
|
||||||
godep go test -cover ./...
|
godep go test -cover ./...
|
||||||
|
|
||||||
|
test-all:
|
||||||
|
@./script/test_all.sh
|
||||||
|
|
||||||
assets: static/
|
assets: static/
|
||||||
go-bindata -o pkg/data/bindata.go -pkg data $(BINDATA_OPTS) $(BINDATA_IGNORE) -ignore=[.]gitignore -ignore=[.]gitkeep $<...
|
go-bindata -o pkg/data/bindata.go -pkg data $(BINDATA_OPTS) $(BINDATA_IGNORE) -ignore=[.]gitignore -ignore=[.]gitkeep $<...
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user