Skip to content

Commit

Permalink
Verify that JDK vendor is a good one
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Oct 23, 2024
1 parent e0bf96c commit 36cb1cb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
- 21
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Maven Download
run: ./mvnw -V -B dependency:go-offline
- name: Maven Install
Expand Down
11 changes: 11 additions & 0 deletions airbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,17 @@
<requirePropertyDiverges>
<property>project.description</property>
</requirePropertyDiverges>
<requireJavaVendor>
<excludes>
<!-- it's known to hang on MacOS -->
<exclude>Zulu</exclude>
</excludes>
<includes>
<include>Oracle JDK</include>
<include>AdoptOpenJDK</include>
<include>Eclipse Adoptium</include>
</includes>
</requireJavaVendor>
</rules>
</configuration>
<dependencies>
Expand Down

0 comments on commit 36cb1cb

Please sign in to comment.