forked from huaweicloud/huaweicloud-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (24 loc) · 862 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
language: java
jdk:
- oraclejdk7
env:
global:
- SKIP_JDK8_MODULES='-pl !com.huawei.openstack4j.connectors:openstack4j-http-connector,!com.huawei.openstack4j.connectors:openstack4j-jersey2,!com.huawei: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