forked from mirror/ledisdb
parent
4c786878af
commit
3709e1b06a
|
@ -6,4 +6,5 @@ build_config.mk
|
||||||
var*
|
var*
|
||||||
*.log
|
*.log
|
||||||
bin
|
bin
|
||||||
coverage.out
|
coverage.out
|
||||||
|
.vscode
|
5
Makefile
5
Makefile
|
@ -12,6 +12,9 @@ export DYLD_LIBRARY_PATH
|
||||||
export GO_BUILD_TAGS
|
export GO_BUILD_TAGS
|
||||||
export GO111MODULE=on
|
export GO111MODULE=on
|
||||||
|
|
||||||
|
|
||||||
|
PACKAGES ?= $(shell GO111MODULE=on go list -mod=vendor ./... | grep -v /vendor/)
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
@ -26,7 +29,7 @@ vet:
|
||||||
go vet -mod=vendor -tags '$(GO_BUILD_TAGS)' ./...
|
go vet -mod=vendor -tags '$(GO_BUILD_TAGS)' ./...
|
||||||
|
|
||||||
test:
|
test:
|
||||||
go test -mod=vendor --race -tags '$(GO_BUILD_TAGS)' -cover -coverprofile coverage.out -timeout 2m $$(go list ./... | grep -v -e /vendor/)
|
go test -mod=vendor --race -tags '$(GO_BUILD_TAGS)' -cover -coverprofile coverage.out -timeout 10m $(PACKAGES)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
go clean -i ./...
|
go clean -i ./...
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
# LedisDB
|
# LedisDB
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/ledisdb/ledisdb.svg?branch=develop)](https://travis-ci.org/siddontang/ledisdb)
|
[![Build Status](https://travis-ci.org/ledisdb/ledisdb.svg?branch=develop)](https://travis-ci.org/siddontang/ledisdb) [![codecov](https://codecov.io/gh/ledisdb/ledisdb/branch/master/graph/badge.svg)](https://codecov.io/gh/ledisdb/ledisdb)
|
||||||
|
|
||||||
[![codecov](https://codecov.io/gh/ledisdb/ledisdb/branch/master/graph/badge.svg)](https://codecov.io/gh/ledisdb/ledisdb)
|
|
||||||
|
|
||||||
Ledisdb is a high-performance NoSQL database, similar to Redis, written in [Go](http://golang.org/). It supports many data structures including kv, list, hash, zset, set.
|
Ledisdb is a high-performance NoSQL database, similar to Redis, written in [Go](http://golang.org/). It supports many data structures including kv, list, hash, zset, set.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue