Skip to content

Commit ca52264

Browse files
Disable config cache for graal incubating test
1 parent 1060dfe commit ca52264

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

integration-tests/graal-incubating/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.gradle.api.JavaVersion
2+
import org.gradle.api.tasks.testing.Test
23

34
plugins {
45
id("otel.java-conventions")
@@ -45,3 +46,9 @@ graalvmNative {
4546
enabled.set(false)
4647
}
4748
}
49+
50+
tasks.named<Test>("test") {
51+
notCompatibleWithConfigurationCache(
52+
"GraalVM native test agent options are not serializable for this task.",
53+
)
54+
}

0 commit comments

Comments
 (0)