forked from roboconf/roboconf-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (33 loc) · 776 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
36
37
38
39
40
41
42
language: java
sudo: false
# Skip the default Maven command launched by Travis.
# By default, it is "mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V"
install: true
# ENV variables
env:
- ROBOCONF_IT_TIMEOUT=60000
# Test several JDK
jdk:
- oraclejdk7
- openjdk7
- oraclejdk8
# Make sure there is a RabbitMq server
services:
- rabbitmq
# Install Puppet to test the Puppet plugin.
addons:
apt:
packages:
- wget
# Configure RabbitMQ with new users.
#before_script:
# - rabbitmqctl add_user roboconf roboconf
# - rabbitmqctl set_permissions roboconf ".*" ".*" ".*"
# For debug only
# - puppet --version
# Build with Maven.
script:
- ./travis-build.sh
# Actions to perform after the build.
after_success:
- ./travis-after-success.sh