Yikun commented on a change in pull request #35663:
URL: https://github.com/apache/spark/pull/35663#discussion_r815709388
##########
File path: project/SparkBuild.scala
##########
@@ -968,6 +973,13 @@ object Volcano {
)
}
+object YuniKorn {
+ // Exclude all yunikorn file for Compile and Test
+ lazy val settings = Seq(
+ unmanagedSources / excludeFilter ~= { _ || "*YuniKorn*.scala" }
Review comment:
```
unmanagedSources / excludeFilter ~= { _ || "*YuniKorn*.scala" }
```
which is equivalent to:
```
unmanagedSources / excludeFilter <<=
(unmanagedSources / excludeFilter) { (currentFilter: FileFilter) =>
currentFilter || "*YuniKorn*.scala"
}
```
[1] https://groups.google.com/g/simple-build-tool/c/zVMyoWRAVWg?hl=en
Note for myself and othre reviewers. : )
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]