forked from redis/lettuce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
26 lines (26 loc) · 925 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
23
24
25
26
language: java
jdk:
- oraclejdk8
env:
matrix:
- PROFILE=netty-40
- PROFILE=netty-41
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.33.tar.gz; fi
- if [[ ! -f ./stunnel-5.33/configure ]]; then tar -xzf stunnel.tar.gz; fi
- if [[ ! -f ./stunnel-5.33/src/stunnel ]]; then cd ./stunnel-5.33; ./configure; make; cd ..; fi
- export PATH="$PATH:$(pwd)/stunnel-5.33/src"
install: make prepare ssl-keys
script: make test-coveralls PROFILE=${PROFILE}
cache:
directories:
- '$HOME/.m2/repository'
- '$TRAVIS_BUILD_DIR/stunnel-5.33'
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