Skip to content

Commit d009d01

Browse files
committed
Make mvn site optional since not working yet with jdk9
1 parent b3e5822 commit d009d01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ matrix:
8686
- $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
8787
- language: java
8888
os: linux
89+
env: ARROW_TRAVIS_SKIP_SITE=yes
8990
jdk: oraclejdk9
9091
script:
9192
- $TRAVIS_BUILD_DIR/ci/travis_script_java.sh

ci/travis_script_java.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ JAVA_DIR=${TRAVIS_BUILD_DIR}/java
2424
pushd $JAVA_DIR
2525

2626
export MAVEN_OPTS="$MAVEN_OPTS -Dorg.slf4j.simpleLogger.defaultLogLevel=warn"
27-
mvn -B test
2827
mvn -B install
29-
mvn -B site
28+
[ "${ARROW_TRAVIS_SKIP_SITE}" = "yes" ] || mvn -B site
3029

3130
popd

0 commit comments

Comments
 (0)