forked from rabbitmq/rabbitmq-jms-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (31 loc) · 854 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
27
28
29
30
31
32
33
34
35
dist: trusty
sudo: required
language: java
jdk:
- oraclejdk8
notifications:
email:
env:
- PYTHON=python3.7
addons:
apt:
sources:
- sourceline: deb https://packages.erlang-solutions.com/ubuntu trusty contrib
key_url: https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc
- sourceline: 'ppa:deadsnakes/ppa'
packages:
- esl-erlang=1:21.3.8.2-1
before_install:
- sudo apt-get update
- sudo apt-get install python3.7
branches:
only:
- master
before_script:
- ./bin/before_build.sh
script: ./mvnw clean verify -P '!setup-test-node' -Dtravis-ci=true -Drabbitmqctl.bin='rabbitmq/sbin/rabbitmqctl' -Dtest-broker.A.nodename=rabbit@$(hostname) -Dtest-client-cert.password= -Dtest-tls-certs.dir=/tmp/tls-gen/basic
cache:
directories:
- $HOME/.m2
install: true