Skip to content

Commit

Permalink
Use Liberica for JDK 8 for compatibility with Apple Silicon
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Jun 17, 2024
1 parent ad7c5dd commit 316ed31
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/setup-test-jdk/action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Set up Test JDK
description: Sets up the JDK required to run platform-tooling-support-tests
inputs:
distribution:
required: true
description: 'The JDK distribution to use'
default: 'liberica'
runs:
using: "composite"
steps:
- uses: actions/setup-java@v3
with:
distribution: temurin
distribution: ${{ inputs.distribution }}
java-version: 8
- shell: bash
run: echo "JDK8=$JAVA_HOME" >> $GITHUB_ENV

0 comments on commit 316ed31

Please sign in to comment.