Skip to content

Commit

Permalink
dont enforce JDK vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
UpcraftLP committed Feb 1, 2025
1 parent db5c99a commit 029c5f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Build Status

on:
push:
branches:
- '*'
branches: [ '*' ]
pull_request:

env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Upload Release Artifacts

on:
push:
tags:
- '*'
tags: [ '*' ]

env:
JAVA_VERSION: 21
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ java {
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(javaVersion)
vendor = JvmVendorSpec.MICROSOFT
// TODO uncomment when switching to JDK 21
// vendor = JvmVendorSpec.MICROSOFT
}
}

Expand Down

0 comments on commit 029c5f4

Please sign in to comment.