diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2023-03-01 21:52:22 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2023-03-22 10:22:34 +0100 |
commit | 816822caf413fd5a74192b21ab79933130f26c15 (patch) | |
tree | 7af8d7591ceed1ab23660d513038991c2497fcc0 | |
parent | ed56aab237ffc9870bb4fa7ed962c6361f90d0ab (diff) | |
download | lombok-816822caf413fd5a74192b21ab79933130f26c15.tar.gz lombok-816822caf413fd5a74192b21ab79933130f26c15.tar.bz2 lombok-816822caf413fd5a74192b21ab79933130f26c15.zip |
Try to install latest ant version
-rw-r--r-- | .github/workflows/ant.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 263c240d..c3c4689b 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -60,12 +60,22 @@ jobs: with: java-version: ${{ matrix.jdk }} distribution: 'zulu' - + - name: Set up Ant + id: sdkman uses: sdkman/sdkman-action@master with: candidate: ant version: 1.10.13 + + -name: Install Ant + run: | + wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.13-bin.zip + unzip apache-ant-1.10.13-bin.zip -d "${HOME}" + echo "${ANT_HOME}=${HOME}/apache-ant-1.10.13" >> $GITHUB_ENV + echo "${ANT_HOME}/bin" >> $GITHUB_PATH + cd $ANT_HOME + ant -f fetch.xml -Ddest=system - name: Cache dependencies uses: actions/cache@v3 @@ -85,6 +95,8 @@ jobs: test-eclipse: runs-on: ubuntu-latest needs: build + env: + SWT_GTK3: 0 strategy: matrix: version: |