File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,14 @@ cache:
1212before_cache :
1313 - rm -rf /home/travis/.cargo/registry
1414
15- # This is not a an official ppa but seems to be a well-known one. Replace it if
16- # we can get Redis 6 from main stream package mananger.
17- #
18- # Refs:
19- # - https://github.com/antirez/redis/issues/1732
20- # - https://launchpad.net/~chris-lea/+archive/ubuntu/redis-server
2115before_install : |
22- sudo add-apt-repository ppa:chris-lea/redis-server -y
2316 sudo apt-get update
24- sudo apt-get install redis-server=5:6.0.5-1chl1~xenial1 stunnel -y
17+ sudo apt-get install stunnel -y
18+
19+ install : |
20+ wget https://github.com/redis/redis/archive/6.0.6.tar.gz;
21+ tar -xzvf 6.0.6.tar.gz;
22+ pushd redis-6.0.6 && BUILD_TLS=yes make && export PATH=$PWD/src:$PATH && popd;
2523
2624matrix :
2725 include :
You can’t perform that action at this time.
0 commit comments