Browse Source

try to fix ant build

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891592 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_1_0
PJ Fanning 2 years ago
parent
commit
46530265ac
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      .github/workflows/test-ant.yml

+ 6
- 4
.github/workflows/test-ant.yml View File

@@ -22,6 +22,8 @@ jobs:
java: [ '8', '11' ]

name: Java ${{ matrix.java }} build
env:
ANT_VERSION: 1.10.11
steps:
- uses: actions/checkout@v2

@@ -35,9 +37,9 @@ jobs:
- name: Set up Ant
id: setup-ant
run: |
wget https://www.apache.org/dist/ant/binaries/apache-ant-1.10.11-bin.tar.gz
tar --exclude=apache-ant-1.10.11/manual -xzvf apache-ant-1.10.11-bin.tar.gz
ANT_HOME=`pwd`/apache-ant-1.10.11 apache-ant-1.10.11/bin/ant -version
wget https://archive.apache.org/dist/ant/binaries/apache-ant-$ANT_VERSION-bin.tar.gz
tar --exclude=apache-ant-$ANT_VERSION/manual -xzvf apache-ant-$ANT_VERSION-bin.tar.gz
ANT_HOME=`pwd`/apache-ant-$ANT_VERSION $ANT_HOME/bin/ant -version

- name: Cache downloaded third-party libraries
uses: actions/cache@v2.1.3
@@ -53,4 +55,4 @@ jobs:
svn co https://svn.apache.org/repos/asf/poi/site/src/documentation src/documentation

- name: Build with Ant
run: ANT_HOME=`pwd`/apache-ant-1.10.11 apache-ant-1.10.11/bin/ant clean jenkins
run: ANT_HOME=`pwd`/apache-ant-$ANT_VERSION $ANT_HOME/bin/ant clean jenkins

Loading…
Cancel
Save