Default to not using sqlite

Change-Id: I22eafd8ae7ac1a18a13251675f08a30e3180bd03
This commit is contained in:
Brad Fitzpatrick 2013-01-20 11:57:34 -08:00
parent a534fac90e
commit d884314d20
1 changed files with 6 additions and 0 deletions

View File

@ -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