From: Dominik Stadler Date: Sun, 6 Dec 2020 22:04:02 +0000 (+0000) Subject: Adjust Travis-CI build to properly build Github Pull Requests X-Git-Tag: before_ooxml_3rd_edition~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=36049ce0f78f53e5c985d2f1d51428dd6267b84d;p=poi.git Adjust Travis-CI build to properly build Github Pull Requests We need to install a newer version of Ant Also checkout documentation-repository Invoke target "jenkins" to run all checks Switch to base image for Ubuntu Bionic git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884167 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/.travis.yml b/.travis.yml index a29df9ec48..4377f54a67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,14 @@ +dist: bionic language: java jdk: - openjdk11 -before_install: /bin/true +before_install: + - wget https://www.apache.org/dist/ant/binaries/apache-ant-1.10.9-bin.tar.gz + - tar -xzvf apache-ant-1.10.9-bin.tar.gz + - export PATH=`pwd`/apache-ant-1.10.9/bin:$PATH + - echo $(ant -version) + - svn co https://svn.apache.org/repos/asf/poi/site/src/documentation src/documentation install: /bin/true before_script: /bin/true script: -- ant clean test rat-check +- ant clean jenkins