summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-redis/redis/v8/Makefile
blob: d5d5d1900f0ccaac11a3d2df8d861413eee23246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
all: testdeps
	go test ./...
	go test ./... -short -race
	go test ./... -run=NONE -bench=. -benchmem
	env GOOS=linux GOARCH=386 go test ./...
	go vet
	golangci-lint run

testdeps: testdata/redis/src/redis-server

bench: testdeps
	go test ./... -test.run=NONE -test.bench=. -test.benchmem

.PHONY: all test testdeps bench

testdata/redis:
	mkdir -p $@
	wget -qO- http://download.redis.io/redis-stable.tar.gz | tar xvz --strip-components=1 -C $@

testdata/redis/src/redis-server: testdata/redis
	cd $< && make all

tag:
	git tag $(VERSION)
	git tag extra/rediscmd/$(VERSION)
	git tag extra/redisotel/$(VERSION)
	git tag extra/rediscensus/$(VERSION)