mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
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:
parent
c7a4955840
commit
00ed2990eb
1 changed files with 2 additions and 2 deletions
4
Makefile
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…
Reference in a new issue