Don't need the PPA in before_script anymore.

This commit is contained in:
michael-grunder
2020-07-07 13:39:42 -07:00
parent 91446f5aa0
commit 09d2ca4e17

View File

@@ -45,7 +45,7 @@ before_install:
- ./configure $CFGARGS
install: make install
before_script:
- sudo add-apt-repository ppa:chris-lea/redis-server -y && sudo apt-get update && sudo apt install redis-server
- sudo apt-get update && sudo apt install redis-server
- mkdir -p tests/nodes/ && echo > tests/nodes/nodemap
- redis-server --port 0 --daemonize yes --aclfile tests/users.acl --unixsocket /tmp/redis.sock
- for PORT in $(seq 6379 6382) $(seq 32767 32769); do redis-server --port $PORT --daemonize yes --aclfile tests/users.acl; done