-
Notifications
You must be signed in to change notification settings - Fork 156
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 Java 17 for most of gradle-profiler tests #580
base: master
Are you sure you want to change the base?
Conversation
Since we will upgrade Android Studio that supports just Java 17. Additionally in the future Gradle will support only Java 17. We will keep Linux running with Java 8 for now.
.teamcity/settings/extensions.kt
Outdated
""""-Porg.gradle.java.installations.paths=%${os.name}.java8.oracle.64bit%,%${os.name}.java11.openjdk.64bit%"""" | ||
""""-Porg.gradle.java.installations.paths= | ||
|%${os.name}.java8.oracle.64bit%, | ||
|%${os.name}.java11.openjdk.64bit%, |
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.
💭 I left Java11 here, since without #579 merged we still use Java11 toolchains
…nstallations.path
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.
LGTM
💅 would be nice if we could reduce the number of places where we repeat Java version numbers
True, I removed some repetition by simplifying setting javaHome() |
It looks like this needs some more changes, since quite some number of tests break |
Since we will upgrade Android Studio that supports just Java 17. Additionally in the future Gradle will support only Java 17.
We will keep Linux running with Java 8 for now.