From d884314d20bec94dd2e2bdb8a76a527ecec983cf Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sun, 20 Jan 2013 11:57:34 -0800 Subject: [PATCH] Default to not using sqlite Change-Id: I22eafd8ae7ac1a18a13251675f08a30e3180bd03 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index dca2254b1..885933e6e 100644 --- a/Makefile +++ b/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