mirror of https://github.com/apache/poi.git
Adjust Github Workflow to actually use newer version of Ant
setting the PATH or calling the ant-script did not work, one actually needs to set ANT_HOME to make it work... git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885055 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
620b8d2c5c
commit
400a3ae631
|
@ -9,7 +9,7 @@ on:
|
||||||
branches: [ trunk ]
|
branches: [ trunk ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ trunk ]
|
branches: [ trunk ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
@ -23,33 +23,32 @@ jobs:
|
||||||
|
|
||||||
name: Java ${{ matrix.java }} build
|
name: Java ${{ matrix.java }} build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup java ${{ matrix.java }}
|
- name: Setup java ${{ matrix.java }}
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
|
|
||||||
- name: Set up Ant
|
- name: Set up Ant
|
||||||
id: setup-ant
|
id: setup-ant
|
||||||
run: |
|
run: |
|
||||||
wget https://www.apache.org/dist/ant/binaries/apache-ant-1.10.9-bin.tar.gz
|
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
|
tar --exclude=apache-ant-1.10.9/manual -xzvf apache-ant-1.10.9-bin.tar.gz
|
||||||
export PATH=`pwd`/apache-ant-1.10.9/bin:$PATH
|
ANT_HOME=`pwd`/apache-ant-1.10.9 apache-ant-1.10.9/bin/ant -version
|
||||||
echo $(ant -version)
|
|
||||||
|
|
||||||
- name: Cache downloaded third-party libraries
|
- name: Cache downloaded third-party libraries
|
||||||
uses: actions/cache@v2.1.3
|
uses: actions/cache@v2.1.3
|
||||||
with:
|
with:
|
||||||
# A list of files, directories, and wildcard patterns to cache and restore
|
# A list of files, directories, and wildcard patterns to cache and restore
|
||||||
path: lib
|
path: lib
|
||||||
# An explicit key for restoring and saving the cache
|
# An explicit key for restoring and saving the cache
|
||||||
key: poi-third-party-libs
|
key: poi-third-party-libs
|
||||||
|
|
||||||
- name: Fetch site via SVN
|
- name: Fetch site via SVN
|
||||||
id: setup-doc-site
|
id: setup-doc-site
|
||||||
run: |
|
run: |
|
||||||
svn co https://svn.apache.org/repos/asf/poi/site/src/documentation src/documentation
|
svn co https://svn.apache.org/repos/asf/poi/site/src/documentation src/documentation
|
||||||
|
|
||||||
- name: Build with Ant
|
- name: Build with Ant
|
||||||
run: ant clean jenkins
|
run: ANT_HOME=`pwd`/apache-ant-1.10.9 apache-ant-1.10.9/bin/ant clean jenkins
|
||||||
|
|
Loading…
Reference in New Issue