Do Travis builds without sqlite

Using xgo comes with its own gomod-related issues. So let's see if this
fixes the build issue mentioned in the previous commit.
This commit is contained in:
Matt Baer 2019-04-06 11:46:27 -04:00
parent c7a4955840
commit 00ed2990eb
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ TMPBIN=./tmp
all : build
ci: ci-assets deps $(TMPBIN)/xgo
$(TMPBIN)/xgo -v -tags='sqlite' ./cmd/writefreely
ci: ci-assets deps
cd cmd/writefreely; $(GOBUILD) -v
build: assets deps
cd cmd/writefreely; $(GOBUILD) -v -tags='sqlite'