Merge branch 'release/0.1.1'
This commit is contained in:
commit
f1391e1c68
2 changed files with 18 additions and 4 deletions
|
@ -1,11 +1,12 @@
|
|||
language: go
|
||||
|
||||
go:
|
||||
- 1.0
|
||||
- 1.1
|
||||
- tip
|
||||
|
||||
install: make all
|
||||
install:
|
||||
- go get github.com/r7kamura/gospel
|
||||
- make install
|
||||
|
||||
script:
|
||||
- go test ./
|
||||
- make test
|
||||
|
|
15
Makefile
15
Makefile
|
@ -1,8 +1,21 @@
|
|||
# for GNU make
|
||||
.PHONY: all build install test clean
|
||||
|
||||
all: libunqlite.a
|
||||
all: build
|
||||
|
||||
build: libunqlite.a
|
||||
go build
|
||||
|
||||
install: libunqlite.a
|
||||
go install
|
||||
|
||||
clean:
|
||||
rm -f libunqlite.a
|
||||
rm -rf src/*
|
||||
|
||||
test:
|
||||
go test ./
|
||||
|
||||
src/unqlite.c:
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
|
Loading…
Reference in a new issue