This resolves the issue: https://github.com/kstyrc/embedded-redis/issues/51 While resolving logs at the process level is preferred as specified in the pull-request: https://github.com/kstyrc/embedded-redis/pull/113 - this fix takes a much more conservative approach and prints the redis process logs only in case of an error/exception when the server startup pattern is not found. That way we do not need to worry about logs in case of successful redis server starts. Dist updated to trusty to resolves travis jdk8 build issue caused by xenial dist Removed sudo and curl commands as they are not longer supported. jpm4j is not longer functional and sudo is deprecated in travis
23 lines
352 B
YAML
23 lines
352 B
YAML
language: java
|
|
|
|
dist: trusty
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
install:
|
|
true
|
|
|
|
before_script:
|
|
- pip install --user codecov
|
|
|
|
script:
|
|
- mvn -U -B -V test --fail-at-end -Dsource.skip=true -Dmaven.javadoc.skip=true
|
|
|
|
after_success:
|
|
- mvn clean test jacoco:report
|
|
- codecov --build "$TRAVIS_JOB_NUMBER-jdk8"
|
|
|
|
notifications:
|
|
email:
|
|
on_failure: change |