diqiu50 commented on code in PR #6726:
URL: https://github.com/apache/gravitino/pull/6726#discussion_r2022016314
##########
clients/filesystem-fuse/build.gradle.kts:
##########
@@ -39,45 +53,25 @@ val checkRustProject by tasks.registering(Exec::class) {
commandLine("bash", "-c", "make check")
}
-val testRustProject by tasks.registering(Exec::class) {
+testRustProject.configureEach {
dependsOn(checkRustEnvironment)
- workingDir = file("$projectDir")
- commandLine("bash", "-c", "make test")
-
- standardOutput = System.out
- errorOutput = System.err
+ mustRunAfter("checkRustProject")
+ extraCargoBuildArguments = listOf("--no-fail-fast", "--all-targets",
"--all-features", "--workspace")
Review Comment:
These arguments are duplicated with `make check`. We really need to run the
checking task of the plugin.
--
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]