Skip to content

Commit 316ed31

Browse files
committed
Use Liberica for JDK 8 for compatibility with Apple Silicon
1 parent ad7c5dd commit 316ed31

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: Set up Test JDK
22
description: Sets up the JDK required to run platform-tooling-support-tests
3+
inputs:
4+
distribution:
5+
required: true
6+
description: 'The JDK distribution to use'
7+
default: 'liberica'
38
runs:
49
using: "composite"
510
steps:
611
- uses: actions/setup-java@v3
712
with:
8-
distribution: temurin
13+
distribution: ${{ inputs.distribution }}
914
java-version: 8
1015
- shell: bash
1116
run: echo "JDK8=$JAVA_HOME" >> $GITHUB_ENV

0 commit comments

Comments
 (0)