Files
spring-data-redis/.travis.yml
Christoph Strobl 42c87e24f9 DATAREDIS-613 - Stream results instead of returning collections where possible.
Allow streaming where possible without breaking Redis API contract. This means we keep the list collection for those operations potentially returning NULL to indicate a value is not present but was requested (eg MGET).

Additionally remove the Spring 4 related travis builds.

Original pull request: #244.
2017-04-13 10:32:16 +02:00

24 lines
262 B
YAML

language: java
jdk:
- oraclejdk8
env:
matrix:
- PROFILE=spring5-next
addons:
apt:
packages:
- oracle-java8-installer
cache:
directories:
- $HOME/.m2
sudo: false
install: true
script: travis_wait make test SPRING_PROFILE=${PROFILE}