We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfbdc6 commit dba922bCopy full SHA for dba922b
.travis.yml
@@ -7,5 +7,5 @@ jdk:
7
- oraclejdk7
8
- openjdk7
9
10
-services:
11
- - redis-server
+before_script:
+ - sh src/test/resources/setup_travis.sh
src/test/resources/setup_travis.sh
@@ -0,0 +1,11 @@
1
+!/bin/sh
2
+
3
+# Install Redis
4
+wget http://download.redis.io/releases/redis-2.8.9.tar.gz
5
+tar -xzf redis-2.8.9.tar.gz
6
+cd redis-2.8.9
+make
+sudo make install
+# Start Redis Server
+/usr/local/bin/redis-server &
0 commit comments