Skip to content

Commit

Permalink
Set up java 8 and gradle + added DV access key
Browse files Browse the repository at this point in the history
  • Loading branch information
ribafish committed Sep 4, 2024
1 parent d4164d3 commit 5aa4406
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 8
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
- name: Build with Gradle
run: ./gradlew build -x eclipseTest -Pbuild.invoker=ci

Expand Down

0 comments on commit 5aa4406

Please sign in to comment.