forked from mp911de/logstash-gelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (57 loc) · 1.7 KB
/
Makefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
PATH := ./work/redis-git/src:${PATH}
define REDIS1_CONF
daemonize yes
port 6479
bind 0.0.0.0
pidfile work/redis1-6479.pid
logfile work/redis1-6479.log
save ""
appendonly no
client-output-buffer-limit pubsub 256k 128k 5
endef
# SENTINELS
define REDIS_SENTINEL1
port 26379
bind 0.0.0.0
daemonize yes
sentinel monitor mymaster 127.0.0.1 6479 1
sentinel down-after-milliseconds mymaster 2000
sentinel failover-timeout mymaster 120000
sentinel parallel-syncs mymaster 1
pidfile work/sentinel1-26379.pid
logfile work/sentinel1-26379.log
endef
export REDIS1_CONF
export REDIS_SENTINEL1
start: cleanup
echo "$$REDIS1_CONF" > work/redis1-6479.conf && redis-server work/redis1-6479.conf
echo "$$REDIS_SENTINEL1" > work/sentinel1-26379.conf && redis-server work/sentinel1-26379.conf --sentinel
cleanup: stop
- mkdir -p work
rm -f work/dump.rdb work/appendonly.aof work/*.conf work/*.log 2>/dev/null
stop:
pkill redis-server || true
pkill redis-sentinel || true
sleep 2
rm -f work/dump.rdb work/appendonly.aof work/*.conf work/*.log || true
rm -f *.aof
rm -f *.rdb
test:
make start
sleep 2
./mvnw -B -Dtest.withRedis=true clean verify
make stop
travis-install:
pkill redis-server || true
pkill redis-sentinel || true
[ ! -e work/redis-git ] && git clone https://github.com/antirez/redis.git --branch 2.8 work/redis-git && cd work/redis-git|| true
[ -e work/redis-git ] && cd work/redis-git && git reset --hard && git pull && git checkout 2.8 || true
make -C work/redis-git clean
make -C work/redis-git -j4
release:
mvn release:clean
mvn release:prepare -Psonatype-oss-release
mvn release:perform -Psonatype-oss-release
mvn -o site:site
mvn -o scm-publish:publish-scm -Dgithub.site.upload.skip=false
.PHONY: test