-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Use the latest available jdk #59788
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
Use the latest available jdk #59788
Changes from all commits
6f55fd1
3a3c11b
ddd67f0
6fb3e6b
0ff7224
3b86147
2e2bd77
fca0103
475047d
cbf97ae
a472270
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -22,7 +22,7 @@ allprojects { | |||||
version project.findProperty('packageVersion') ?: "99.99.99-dev" | ||||||
|
||||||
java { | ||||||
sourceCompatibility = 1.8 | ||||||
sourceCompatibility = 1.9 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this changed?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See dotnet/sdk#45822 (comment) We started hitting an error w/ version 8 when updating to 11.0.25:
I'm not sure how to proceed if the underlying machines are in a mixed state, as they seem to be (some have 11.0.24, which is incompatible w/ 9, and some have 11.0.25, which is incompatible w/ 8) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, never mind, it's Helix, not the build machines. Do you know why non-windows is on JDK 10 & windows is on 11 here? The Helix failure was only on Mac. aspnetcore/eng/targets/Helix.targets Lines 3 to 4 in e0e0224
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought all machines were supposed to have moved to 21.X? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably should remove those lines now? Wonder if we used to have to install the jdk ourselves 5 years ago. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, I totally missed that. So it looks like whatever version of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Related to this ask? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
So maybe the machines haven't been refreshed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now we have
On Windows 🙄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should probably revert 3b86147 |
||||||
} | ||||||
|
||||||
repositories { | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.