Skip to content

Commit 21b080d

Browse files
committed
Update
1 parent 8cf0c4a commit 21b080d

File tree

7 files changed

+534
-481
lines changed

7 files changed

+534
-481
lines changed

clients/filesystem-fuse/build.gradle.kts

-8
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
import org.gradle.api.tasks.Exec
2121

2222
val checkRustEnvironment by tasks.registering(Exec::class) {
23-
description = "Check if Rust environment."
24-
group = "verification"
2523
commandLine("bash", "-c", "cargo --version")
2624
standardOutput = System.out
2725
errorOutput = System.err
@@ -30,23 +28,19 @@ val checkRustEnvironment by tasks.registering(Exec::class) {
3028

3129
val buildRustProject by tasks.registering(Exec::class) {
3230
dependsOn(checkRustEnvironment)
33-
description = "Compile the Rust project"
3431
workingDir = file("$projectDir")
3532
commandLine("bash", "-c", "make build")
3633
}
3734

3835
val checkRustProject by tasks.registering(Exec::class) {
3936
dependsOn(checkRustEnvironment)
40-
description = "Check the Rust project"
4137
workingDir = file("$projectDir")
4238

4339
commandLine("bash", "-c", "make check")
4440
}
4541

4642
val testRustProject by tasks.registering(Exec::class) {
4743
dependsOn(checkRustEnvironment)
48-
description = "Run tests in the Rust project"
49-
group = "verification"
5044
workingDir = file("$projectDir")
5145
commandLine("bash", "-c", "make test")
5246

@@ -56,8 +50,6 @@ val testRustProject by tasks.registering(Exec::class) {
5650

5751
val cleanRustProject by tasks.registering(Exec::class) {
5852
dependsOn(checkRustEnvironment)
59-
description = "Run tests in the Rust project"
60-
group = "verification"
6153
workingDir = file("$projectDir")
6254
commandLine("bash", "-c", "make clean")
6355

0 commit comments

Comments
 (0)