forked from ContainX/openstack4j
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
38 lines (29 loc) · 989 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
# Cache maven cache directory so external artifacts dont need to be
# re-downloaded.
cache:
directories:
- $HOME/.m2
language: java
jdk:
- oraclejdk7
env:
global:
- SKIP_JDK8_MODULES='-pl !org.pacesys.openstack4j.connectors:openstack4j-http-connector,!org.pacesys.openstack4j.connectors:openstack4j-jersey2,!org.pacesys:it-jersey2'
- DEPLOY=0
matrix:
include:
- jdk: "oraclejdk8"
env:
- SKIP_JDK8_MODULES=""
- DEPLOY=1
notifications:
email: false
install: /bin/true
# When run on JDK7, modules that require JDK8 needs to be skipped
script: mvn clean verify -B $SKIP_JDK8_MODULES
after_success:
- "[[ $DEPLOY == 1 && $TRAVIS_BRANCH == \"master\" ]] && { mvn deploy --settings distribution/settings.xml -DskipTests=true -B; };"
# disable sudo to ensure that this build runs on the travis container-based
# infrastructure. This should prevent the buffer overflow from
# https://github.com/travis-ci/travis-ci/issues/5227
sudo: false