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.
pull/95/head
Matt Baer 6 years ago
parent c7a4955840
commit 00ed2990eb
  1. 4
      Makefile

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

Loading…
Cancel
Save