-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Gradle Check Failed on Windows due to JDK19 pulling by gradle #5188
Conversation
build.gradle
Outdated
@@ -398,6 +399,10 @@ gradle.projectsEvaluated { | |||
allprojects { | |||
project.tasks.withType(JavaForkOptions) { | |||
maxHeapSize project.property('options.forkOptions.memoryMaximumSize') | |||
// Temporary workaround to ublock the builds (see https://github.com/gradle/gradle/issues/22659) | |||
if (OperatingSystem.current().isWindows()) { | |||
executable null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dblock I have not yet figured out what the cause is (why the incorrect executable is being wired in) and working on that, @peterzhuamazon if you need to unblock Windows builds, please go ahead (if it could wait for a proper fix in place, even better).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this unblocks it, let it be.
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #5188 +/- ##
============================================
- Coverage 71.05% 70.93% -0.13%
+ Complexity 58248 58154 -94
============================================
Files 4708 4708
Lines 277559 277559
Branches 40189 40189
============================================
- Hits 197229 196878 -351
- Misses 64246 64569 +323
- Partials 16084 16112 +28
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
57efc04
to
5cd46f6
Compare
@dblock @peterzhuamazon we are good to go with permanent fix, thanks guys |
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @reta for this and I also learned a bit about these plugins.
❤️
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
…5188) (#5192) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 650039c) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
…5188) (#5191) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 650039c) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Signed-off-by: Andriy Redko andriy.redko@aiven.io
Description
The internal plugin incorrectly assumes binaries for Windows (the issue was always present but only recently started to manifest itself because if gradle/gradle@75eb1b7
Issues Resolved
Closes #5181
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.