diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2021-03-24 09:32:06 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2023-03-22 10:22:34 +0100 |
commit | 193f808b69a07f7d5a658f111629c160ac422c79 (patch) | |
tree | 86b2371edd841490b6115ceea6ca417455a742ac | |
parent | 10d824ace86828acaa8ebc84b598e4cb87b4890b (diff) | |
download | lombok-193f808b69a07f7d5a658f111629c160ac422c79.tar.gz lombok-193f808b69a07f7d5a658f111629c160ac422c79.tar.bz2 lombok-193f808b69a07f7d5a658f111629c160ac422c79.zip |
Update ant.yml
-rw-r--r-- | .github/workflows/ant.yml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index ec743350..c7ef99ad 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -40,11 +40,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - jdk: [8, 9, 10, 11, 12, 13, 14, 15, 16] + jdk: [11, 12, 13, 14, 15, 16] goal: [javacCurrent] include: - - jdk: 8 + - jdk: 11 goal: javac6 + - jdk: 11 + goal: javac8 fail-fast: false steps: @@ -72,7 +74,6 @@ jobs: test-eclipse: - needs: build runs-on: ubuntu-latest strategy: matrix: @@ -87,11 +88,6 @@ jobs: uses: actions/setup-java@v1 with: java-version: 11 - - - uses: actions/download-artifact@v2 - with: - name: lombok.jar - path: dist/lombok.jar - name: Cache dependencies uses: actions/cache@v2 @@ -104,4 +100,4 @@ jobs: ${{ runner.os }}- - name: Build with Ant - run: ant -noinput -buildfile build.xml test.${{ matrix.version }}
\ No newline at end of file + run: ant -noinput dist test.${{ matrix.version }}
\ No newline at end of file |