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
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.0
|
|
||||||
- 1.1
|
- 1.1
|
||||||
- tip
|
- tip
|
||||||
|
|
||||||
install: make all
|
install:
|
||||||
|
- go get github.com/r7kamura/gospel
|
||||||
|
- make install
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- go test ./
|
- make test
|
||||||
|
|
15
Makefile
15
Makefile
|
@ -1,8 +1,21 @@
|
||||||
# for GNU make
|
# for GNU make
|
||||||
|
.PHONY: all build install test clean
|
||||||
|
|
||||||
all: libunqlite.a
|
all: build
|
||||||
|
|
||||||
|
build: libunqlite.a
|
||||||
go build
|
go build
|
||||||
|
|
||||||
|
install: libunqlite.a
|
||||||
|
go install
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f libunqlite.a
|
||||||
|
rm -rf src/*
|
||||||
|
|
||||||
|
test:
|
||||||
|
go test ./
|
||||||
|
|
||||||
src/unqlite.c:
|
src/unqlite.c:
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
|
|
Loading…
Reference in a new issue