Skip to content

Commit 4b720c9

Browse files
committed
Use early access build for Windows arm
1 parent 2b89e72 commit 4b720c9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,16 @@ jobs:
5555
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
5656
- name: Set up JDK 25
5757
uses: actions/setup-java@v4
58+
if: runner.os != 'Windows' || runner.arch != 'ARM64'
5859
with:
5960
java-version: '25'
6061
distribution: 'temurin'
62+
- name: Set up JDK 25 ea
63+
uses: actions/setup-java@v5
64+
if: runner.os == 'Windows' && runner.arch == 'ARM64'
65+
with:
66+
java-version: '25-ea'
67+
distribution: 'temurin'
6168
- name: Set up Gradle
6269
uses: gradle/actions/setup-gradle@v4
6370
with:

0 commit comments

Comments
 (0)