forked from redis/lettuce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
22 lines (22 loc) · 845 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: java
jdk:
- oraclejdk8
sudo: false
before_install:
- if [[ ! -f stunnel.tar.gz ]]; then wget -O stunnel.tar.gz ftp://ftp.stunnel.org/stunnel/archive/5.x/stunnel-5.29.tar.gz; fi
- if [[ ! -f ./stunnel-5.29/configure ]]; then tar -xzf stunnel.tar.gz; fi
- if [[ ! -f ./stunnel-5.29/src/stunnel ]]; then cd ./stunnel-5.29; ./configure; make; cd ..; fi
- export PATH="$PATH:$(pwd)/stunnel-5.29/src"
install: make prepare ssl-keys
script: make test-coveralls
cache:
directories:
- '$HOME/.m2/repository'
- '$TRAVIS_BUILD_DIR/stunnel-5.29'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/c34b69f37ca13d2f8642
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false