Skip to content

Commit

Permalink
needs java 17
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <[email protected]>
  • Loading branch information
jflo committed Nov 17, 2023
1 parent 246f6ff commit 50ce5e5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 11
java-version: 17
cache: gradle
- name: Compile
uses: gradle/gradle-build-action@v2
Expand All @@ -41,6 +41,26 @@ jobs:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
- name: list perms
run: ls -la
javadoc_17:
runs-on: [ self-hosted ]
needs: compile
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up Java 17
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
cache: gradle
- name: Restore classes
uses: actions/cache@v3
with:
path: "**/*.class"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
- name: javadoc (JDK 17)
run: ./gradlew --no-daemon javadoc
assemble:
runs-on: [self-hosted, Linux, X64]
needs: compile
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/javadoc.yml

This file was deleted.

0 comments on commit 50ce5e5

Please sign in to comment.