-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-1342] Scala 2.10.4 #259
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
Conversation
Merged build triggered. One or more automated tests failed |
Merged build started. One or more automated tests failed |
Maybe this needs to touch |
My build didn't need that just to succeed, so I'm not sure what Jenkins problem is, but you're right that updating the plugins is a good idea. |
Merged build triggered. One or more automated tests failed |
Merged build started. One or more automated tests failed |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Merged build finished. One or more automated tests failed |
One or more automated tests failed |
Can one of the admins verify this patch? |
Merged build triggered. Build is starting -or- tests failed to complete. |
Merged build started. Build is starting -or- tests failed to complete. |
That should be all of them now, but there is a 2.10.3-specific comment in the root pom.xml that could use some investigation @srowen <dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<!-- <scope>runtime</scope> --> <!-- more correct, but scalac 2.10.3 doesn't like it -->
</dependency> |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Thanks Mark, merged this. |
Just a Scala version increment Author: Mark Hamstra <markhamstra@gmail.com> Closes apache#259 from markhamstra/scala-2.10.4 and squashes the following commits: fbec547 [Mark Hamstra] [SPARK-1342] Bumped Scala version to 2.10.4
## What changes were proposed in this pull request? Turns out that this was deterministically failing on bazel since the CWD includes "/.cache". The fix is to filter out all *.crc files instead of just those with "." in their name. ## How was this patch tested? Unit tests. Author: Eric Liang <ekl@databricks.com> Closes apache#259 from ericl/debug-flaky-test-21.
Just a Scala version increment