Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into setup-gradle-action
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Oct 28, 2024
2 parents 8792961 + 603c219 commit 59b8e30
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,22 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Setup JDK 23
id: setup-java-23
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '23'
cache: 'gradle'

- name: Set JAVA_HOME
run: echo "JAVA_HOME=${{ steps.setup-java-21.outputs.path }}" >> $GITHUB_ENV

- name: Setup gradle properties
run: |
cat .github/env/${{ runner.os }}/gradle.properties >> gradle.properties
echo >> gradle.properties
echo "org.gradle.java.installations.paths=${{ steps.setup-java-8.outputs.path }},${{ steps.setup-java-11.outputs.path }},${{ steps.setup-java-17.outputs.path }},${{ steps.setup-java-21.outputs.path }}" >> gradle.properties
echo "org.gradle.java.installations.paths=${{ steps.setup-java-8.outputs.path }},${{ steps.setup-java-11.outputs.path }},${{ steps.setup-java-17.outputs.path }},${{ steps.setup-java-21.outputs.path }},${{ steps.setup-java-23.outputs.path }}" >> gradle.properties
echo "customDoubleParser=${{ matrix.customDoubleParser }}" >> gradle.properties
cat gradle.properties
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/io/deephaven/csv/Constants.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package io.deephaven.csv
class Constants {
public static int LATEST_LTS = 21

public static int[] TEST_VERSIONS = [8, 11, 17, 21]
public static int[] TEST_VERSIONS = [8, 11, 17, 21, 23]
}

0 comments on commit 59b8e30

Please sign in to comment.