-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-33079][TESTS] Replace the existing Maven job for Scala 2.13 in Github Actions with SBT job #29958
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
[SPARK-33079][TESTS] Replace the existing Maven job for Scala 2.13 in Github Actions with SBT job #29958
Changes from all commits
8e45bc8
5a22c38
5dec1ff
47a4806
91d1066
30b2ddd
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 |
|---|---|---|
|
|
@@ -91,7 +91,7 @@ class KinesisBackedBlockRDD[T: ClassTag]( | |
| require(_blockIds.length == arrayOfseqNumberRanges.length, | ||
| "Number of blockIds is not equal to the number of sequence number ranges") | ||
|
|
||
| override def isValid(): Boolean = true | ||
| override def isValid: Boolean = true | ||
|
Contributor
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. Is this change related to the current pr?
Member
Author
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. Yes. empty parameter list causes compilation error if we build for Scala 2.13 with SBT. |
||
|
|
||
| override def getPartitions: Array[Partition] = { | ||
| Array.tabulate(_blockIds.length) { i => | ||
|
|
||
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.
So, we are going to remove
packagingandinstallation (Maven)here?Uh oh!
There was an error while loading. Please reload this page.
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.
Can Maven build and SBT build be executed serially in one GitHub Action?
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 think it wouldn't matter too much. If a job is finished quicker the next job can be triggered
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.
It seems that 2.13 build action runs faster than other actions. Can we consider this ?
Uh oh!
There was an error while loading. Please reload this page.
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.
The number of job is limited in github actions instead of each entire workflow run IIRC.