-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Fix javatools #8164
Fix javatools #8164
Conversation
buildjar is also not compatible with jdk8, so removed those tests on ubuntu1404 and ubuntu1604 |
@@ -72,10 +64,6 @@ java_test( | |||
data = [ | |||
"//third_party/java/jdk/langtools:javac_jar", | |||
], | |||
jvm_flags = [ | |||
# Simulates how Bazel invokes turbine | |||
"-Xbootclasspath/p:$(location //third_party/java/jdk/langtools:javac_jar)", |
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.
Why did you remove these flags? They may be the reason why the buildtools tests are failing on jdk8
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.
Because the build fails with them on JDK11.
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.
OK, I think it's ok to disable the tests for JDK8 for the time being... I'll investigate the issue on Monday. Thanks!
No description provided.