mirror of https://github.com/perkeep/perkeep.git
Default to not using sqlite
Change-Id: I22eafd8ae7ac1a18a13251675f08a30e3180bd03
This commit is contained in:
parent
a534fac90e
commit
d884314d20
6
Makefile
6
Makefile
|
@ -1,6 +1,12 @@
|
|||
all:
|
||||
go install ./pkg/... ./server/... ./cmd/... ./third_party/...
|
||||
|
||||
full:
|
||||
go install --tags=with_sqlite ./pkg/... ./server/... ./cmd/... ./third_party/...
|
||||
|
||||
presubmitlite:
|
||||
SKIP_DEP_TESTS=1 go test -short ./pkg/... ./server/camlistored ./cmd/... && echo PASS
|
||||
|
||||
presubmit:
|
||||
SKIP_DEP_TESTS=1 go test --tags=with_sqlite -short ./pkg/... ./server/camlistored ./cmd/... && echo PASS
|
||||
|
||||
|
|
Loading…
Reference in New Issue