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.
24 lines
262 B
YAML
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}
|