Skip to content

Commit 3ca209a

Browse files
authored
chore: DH-19145 Change build JDK from 11 to 17 (#401)
1 parent e125eb2 commit 3ca209a

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

.github/scripts/build-server-distribution-remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GIT_DIR=/root/git
1919
DEEPHAVEN_DIR=/root/deephaven
2020
DOCKER_IMG=$1
2121
BRANCH_DELIM=":"
22-
BUILD_JAVA=temurin-11-jdk-amd64
22+
BUILD_JAVA=temurin-17-jdk-amd64
2323

2424
if [ ! -d "${DEEPHAVEN_DIR}" ]; then
2525
echo "$0: Missing one or more Benchmark setup directories"

.github/scripts/setup-test-server-remote.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ if [[ ${UPDATED} != 0 ]]; then
4141
fi
4242

4343
title "-- Installing JVMs --"
44-
apt -y install temurin-11-jdk
45-
apt -y install temurin-21-jdk
44+
apt -y install temurin-17-jdk
4645

4746
title "-- Installing Maven --"
4847
apt -y install maven

.github/workflows/mvn-integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
- name: Set up JDK 21
20+
- name: Set up JDK 17
2121
uses: actions/setup-java@v4
2222
with:
23-
java-version: '21'
23+
java-version: '17'
2424
distribution: 'temurin'
2525

2626
- name: Docker Pull Deephaven and Redpanda

.github/workflows/mvn-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
- name: Set up JDK 21
20+
- name: Set up JDK 17
2121
uses: actions/setup-java@v4
2222
with:
23-
java-version: '21'
23+
java-version: '17'
2424
distribution: 'temurin'
2525
cache: maven
2626
- name: Build with Maven

.github/workflows/publish-benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
runs-on: ubuntu-22.04
4646

4747
steps:
48-
- name: Set up JDK 21
48+
- name: Set up JDK 17
4949
uses: actions/setup-java@v4
5050
with:
51-
java-version: '21'
51+
java-version: '17'
5252
distribution: 'temurin'
5353

5454
- name: Checkout Latest

.github/workflows/remote-benchmarks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ jobs:
6565

6666
steps:
6767
- uses: actions/checkout@v4
68-
- name: Set up JDK 21
68+
- name: Set up JDK 17
6969
uses: actions/setup-java@v4
7070
with:
71-
java-version: '21'
71+
java-version: '17'
7272
distribution: 'temurin'
7373

7474
- name: Setup Local Scripts
@@ -145,10 +145,10 @@ jobs:
145145
steps:
146146
- uses: actions/checkout@v4
147147

148-
- name: Set up JDK 21
148+
- name: Set up JDK 17
149149
uses: actions/setup-java@v4
150150
with:
151-
java-version: '21'
151+
java-version: '17'
152152
distribution: 'temurin'
153153

154154
- name: Setup Local Scripts

0 commit comments

Comments
 (0)