Skip to content

Commit

Permalink
Merge pull request #440 from scenerygraphics/ci-fix-gh-actions-assist…
Browse files Browse the repository at this point in the history
…ive-tech-linux-jdk11

Github Actions: Fix assistive technologies issue on Linux/JDK11 by switching to AdoptOpenJDK 11.
  • Loading branch information
skalarproduktraum committed Aug 16, 2021
2 parents 7c02e61 + 062090f commit be5a289
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -11,9 +11,12 @@ jobs:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt-hotspot'
java-version: '11'
#- name: Fix assistive technologies on Linux/JDK11
# run: sudo sed -i -e '/^assistive_technologies=/s/^/#/' /etc/java-*-openjdk/accessibility.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
# - name: Build with Gradle
Expand Down

0 comments on commit be5a289

Please sign in to comment.